修改 debian 版本为 12 bookworm

This commit is contained in:
whyour
2026-03-01 20:36:42 +08:00
parent ad18dd8624
commit efea9385ad
4 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
FROM node:20-slim AS nodebuilder
FROM python:3.10-slim-bullseye AS builder
FROM python:3.10-slim-bookworm AS builder
COPY package.json .npmrc pnpm-lock.yaml /tmp/build/
COPY --from=nodebuilder /usr/local/bin/node /usr/local/bin/
COPY --from=nodebuilder /usr/local/lib/node_modules/. /usr/local/lib/node_modules/
@@ -12,7 +12,7 @@ RUN set -x && \
cd /tmp/build && \
pnpm install --prod
FROM python:3.10-slim-bullseye
FROM python:3.10-slim-bookworm
ARG QL_MAINTAINER="whyour"
LABEL maintainer="${QL_MAINTAINER}"
@@ -42,7 +42,7 @@ RUN set -x && \
openssh-client \
jq \
procps \
netcat \
netcat-openbsd \
unzip \
libatomic1 && \
apt-get clean && \
+3 -3
View File
@@ -1,6 +1,6 @@
FROM node:20-slim AS nodebuilder
FROM python:3.11-slim-bullseye AS builder
FROM python:3.11-slim-bookworm AS builder
COPY package.json .npmrc pnpm-lock.yaml /tmp/build/
COPY --from=nodebuilder /usr/local/bin/node /usr/local/bin/
COPY --from=nodebuilder /usr/local/lib/node_modules/. /usr/local/lib/node_modules/
@@ -12,7 +12,7 @@ RUN set -x && \
cd /tmp/build && \
pnpm install --prod
FROM python:3.11-slim-bullseye
FROM python:3.11-slim-bookworm
ARG QL_MAINTAINER="whyour"
LABEL maintainer="${QL_MAINTAINER}"
@@ -43,7 +43,7 @@ RUN set -x && \
openssh-client \
jq \
procps \
netcat \
netcat-openbsd \
unzip \
libatomic1 && \
apt-get clean && \