fix dockerfile

This commit is contained in:
jxxghp 2023-06-07 13:47:12 +08:00
parent bc6388821f
commit 0780e8bb47

View File

@ -10,7 +10,7 @@ RUN apk add --no-cache --virtual .build-deps \
&& ln -sf /usr/bin/python3 /usr/bin/python \
&& python -m pip install --upgrade pip setuptools wheel \
&& apk del --purge .build-deps \
&& rm -rf /tmp/* /root/.cache /var/cache/apk/* \
&& rm -rf /tmp/* /root/.cache /var/cache/apk/*
FROM scratch AS APP
COPY --from=Builder / /
ENV LANG="C.UTF-8" \