Skip to content

Commit 0b845e9

Browse files
chore: add missing uvicorn installation in Dockerfile
1 parent d15cd84 commit 0b845e9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ __pycache__
22
*.pyc
33
.venv
44
.vscode
5+
.idea

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ COPY . /app
44
WORKDIR /app
55

66
RUN pip install -r requirements.txt
7+
RUN pip install uvicorn
8+
79
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8000"]

0 commit comments

Comments
 (0)