Skip to content

Commit c75e635

Browse files
Change working directory to src to fix problems
1 parent 0483c44 commit c75e635

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.11-slim
22

33
COPY . /app/
4-
WORKDIR /app/
4+
WORKDIR /app/src/
55

66
RUN apt update -y && apt install -y git build-essential tree
77

@@ -16,4 +16,4 @@ RUN pip install --no-cache-dir -r ./src/requirements.txt
1616

1717

1818
# Run the main script
19-
CMD ["python", "/app/src/main.py"]
19+
CMD ["python", "main.py"]

0 commit comments

Comments
 (0)