降级 Alpine 为 3.18

This commit is contained in:
whyour
2023-12-18 23:39:16 +08:00
parent ca8790bbec
commit 52a89a21f6
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM python:3.11-alpine as builder
FROM python:3.11-alpine3.18 as builder
COPY package.json .npmrc pnpm-lock.yaml /tmp/build/
RUN set -x \
&& apk update \
@@ -7,7 +7,7 @@ RUN set -x \
&& cd /tmp/build \
&& pnpm install --prod
FROM python:3.11-alpine
FROM python:3.11-alpine3.18
ARG QL_MAINTAINER="whyour"
LABEL maintainer="${QL_MAINTAINER}"