Skip to content

Commit 9a5287b

Browse files
authored
Fixed docker build error
1 parent a57cd02 commit 9a5287b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ WORKDIR /usr/src/app
44
EXPOSE 8000
55

66
COPY requirements.txt ./
7-
RUN pip install --no-cache-dir -r requirements.txt
7+
RUN pip install -r requirements.txt
88

99
COPY . .
1010

11-
CMD ["python", "app.py"]
11+
CMD ["uvicorn", "main:app"]

0 commit comments

Comments
 (0)