Skip to content

Commit

Permalink
🐋 docker
Browse files Browse the repository at this point in the history
  • Loading branch information
jiisanda committed Dec 6, 2023
1 parent 06046f3 commit 4a3a801
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM python:3.11.6
LABEL authors="jiisanda"

WORKDIR /usr/src/app

COPY requirements.txt ./

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

COPY . .

CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ python-dotenv==1.0.0
python-jose==3.3.0
python-multipart==0.0.6
python-ulid==1.1.0
pywin32==306
PyYAML==6.0.1
rsa==4.9
s3transfer==0.6.2
Expand Down

0 comments on commit 4a3a801

Please sign in to comment.