From 7f61a8df5ac078953ad27b4e7b8befa366095550 Mon Sep 17 00:00:00 2001 From: Trim21 Date: Sat, 29 Apr 2023 17:53:31 +0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 .