This commit is contained in:
Eden Kirin
2024-01-11 12:11:37 +01:00
parent f09a149ee5
commit 7a458790d2
5 changed files with 286 additions and 95 deletions

View File

@ -6,14 +6,13 @@ ENV \
EXPOSE 3000
WORKDIR /app
COPY ./app .
RUN \
python -m venv /venv && \
pip install -r requirements.txt
WORKDIR /app
# start shell script when container starts
ENTRYPOINT ["/app/run.sh"]