Skip to content

Commit

Permalink
Adapt code
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienvermeille committed Mar 29, 2024
1 parent 34e1388 commit 4c1d404
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM python:3.10-slim AS build-env
ADD . /app
ADD main /app
WORKDIR /app
RUN pip install --upgrade pip
RUN pip install pipenv
Expand All @@ -11,4 +11,4 @@ COPY --from=build-env /app /app

ENV PYTHONPATH=/app
ENTRYPOINT ["/usr/local/bin/python"]
CMD ["/app/release/main.py"]
CMD ["/app/main.py"]

0 comments on commit 4c1d404

Please sign in to comment.