Skip to content

Commit 54e0b32

Browse files
fix: Correct file paths in Dockerfile for backend requirements and code
1 parent 12e0f3c commit 54e0b32

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker/Backend.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ apt-get install -y libicu-dev
77
WORKDIR /app
88

99
# Copy only requirements first to leverage Docker cache
10-
COPY ../src/backend/requirements.txt .
10+
COPY src/backend/requirements.txt .
1111

1212
# Install dependencies
1313
RUN pip install --no-cache-dir -r requirements.txt
1414

1515
# Copy backend code
16-
COPY ../src/backend/ .
16+
COPY src/backend/ .
1717

1818
EXPOSE 8000
1919

0 commit comments

Comments
 (0)