change workdir before pip
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Aaron Riedel 2023-11-15 13:15:55 +01:00
parent 335507e8ba
commit f3826a7b07
Signed by: aaron
GPG key ID: 643004654D40D577

View file

@ -20,7 +20,9 @@ RUN chmod +x start.sh
USER ${USER} USER ${USER}
WORKDIR ${HOMEDIR}/NexusDashboard
RUN pip install -r requirements.txt RUN pip install -r requirements.txt
RUN pip install gunicorn RUN pip install gunicorn
WORKDIR ${HOMEDIR}
ENTRYPOINT [ "/home/docker/start.sh" ] ENTRYPOINT [ "/home/docker/start.sh" ]