Skip to content

Commit 4a66768

Browse files
committed
Fully fix build
1 parent 52be82a commit 4a66768

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
@@ -17,8 +17,8 @@ COPY --from=generate-requirements /app/requirements.txt ./
1717

1818
RUN ["pip", "install", "-r", "requirements.txt"]
1919

20-
COPY src .
20+
COPY src/main.py .
2121

22-
ENTRYPOINT [ "uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8000", "--proxy-headers" ]
22+
ENTRYPOINT [ "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000", "--proxy-headers" ]
2323

2424
EXPOSE 8000

0 commit comments

Comments
 (0)