changed version command order

This commit is contained in:
vabene1111 2023-07-29 08:38:13 +02:00
parent 0688f46d8b
commit 113c40c243

View File

@ -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"]