Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: projectoperations <[email protected]>
  • Loading branch information
projectoperations authored Nov 22, 2024
1 parent 1c36f0d commit 28f5ea9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM python:3.10-slim

WORKDIR /code

COPY ./requirements.txt ./
RUN pip install --no-cache-dir --upgrade -r requirements.txt

COPY ./src ./src

CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "82", "--reload"]

0 comments on commit 28f5ea9

Please sign in to comment.