From 8e41c3ce912b337237353910a6d84c431efb2354 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Thu, 13 Mar 2025 17:08:50 +0100 Subject: [PATCH] fix(chalice): default envs Signed-off-by: rjshrjndrn --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 513494dca..5321bad5b 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -23,9 +23,9 @@ ENV SOURCE_MAP_VERSION=0.7.4 \ GIT_SHA=$GIT_SHA COPY --from=builder /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages COPY --from=builder /usr/local/bin /usr/local/bin -RUN apk add --no-cache tini WORKDIR /work COPY . . +RUN apk add --no-cache tini && mv env.default .env ENTRYPOINT ["/sbin/tini", "--"] CMD ["./entrypoint.sh"]