Update Dockerfile

This commit is contained in:
Trim21
2023-04-29 17:53:31 +08:00
committed by GitHub
parent ab8e041e5a
commit 7f61a8df5a

View File

@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM scratch AS APP
FROM python:3.11-alpine AS APP
ENV S6_SERVICES_GRACETIME=30000 \
S6_KILL_GRACETIME=60000 \
@@ -14,8 +14,6 @@ ENV S6_SERVICES_GRACETIME=30000 \
PGID=1000 \
UMASK=022
COPY --from=python:3.11-alpine / /
WORKDIR /app
COPY requirements.txt .