From 683449ba1a88a2cff4306ec9f01022d6bc728704 Mon Sep 17 00:00:00 2001 From: craisin Date: Wed, 31 Dec 2025 20:42:57 -0800 Subject: [PATCH] update dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 49b993a..ab36e9a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM docker WORKDIR / COPY composer /composer RUN mkdir -p store/stack +RUN touch store/stack/.env RUN apk update RUN apk add --no-cache git python3 py3-pip -RUN pip3 install -r composer/requirements.txt -ENTRYPOINT ['python3', 'composer/entrypoint.py'] \ No newline at end of file +RUN pip3 install --no-cache-dir --break-system-packages -r composer/requirements.txt +ENTRYPOINT python3 composer/entrypoint.py \ No newline at end of file