diff --git a/Dockerfile b/Dockerfile index 4255031a..7348581f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 .