From 113c40c243f55e74755d97f45d71ee9f97d652ae Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Sat, 29 Jul 2023 08:38:13 +0200 Subject: [PATCH] changed version command order --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 792f2674..e7efbdb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,10 +26,10 @@ RUN apk add --no-cache --virtual .build-deps gcc musl-dev postgresql-dev zlib-de venv/bin/pip install wheel==0.37.1 && \ venv/bin/pip install setuptools_rust==1.1.2 && \ venv/bin/pip install -r requirements.txt --no-cache-dir &&\ - /opt/recipes/venv/bin/python version.py && \ apk --purge del .build-deps #Copy project and execute it. COPY . ./ +RUN /opt/recipes/venv/bin/python version.py RUN chmod +x boot.sh ENTRYPOINT ["/opt/recipes/boot.sh"]