Skip to content

Commit

Permalink
fix: 🐳 docker entrypoint updated
Browse files Browse the repository at this point in the history
  • Loading branch information
onuralpszr committed Sep 17, 2024
1 parent fad560b commit 86618e3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN rm -rf /root/.cache/pip

WORKDIR /startrack
ENTRYPOINT ["python", "/startrack/app.py"]
WORKDIR /
ENV PYTHONPATH="/startrack"
RUN pwd && ls -la /

ENTRYPOINT ["python","-m","startrack.app"]

0 comments on commit 86618e3

Please sign in to comment.