Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MistEO authored Jan 7, 2025
1 parent 69b85ad commit 99c98dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ FROM python:3.12

WORKDIR /app

COPY requirements.txt ./
COPY requirements.txt .

RUN python -m pip install -r requirements.txt --no-cache-dir

COPY ..
COPY . .

EXPOSE 8000

ENTRYPOINT ["uvicorn", "main:app"]
ENTRYPOINT ["python3", "-m", "uvicorn", "main:app"]

0 comments on commit 99c98dd

Please sign in to comment.