Skip to content

Commit 1c80d7a

Browse files
Merge pull request #381 from cyclotruc/fix-docker
fix docker
2 parents bfdc638 + 2f3cf14 commit 1c80d7a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ RUN apt-get update \
1111
COPY pyproject.toml .
1212
COPY src/ ./src/
1313

14-
1514
# Install runtime dependencies defined in pyproject.toml
1615
RUN pip install --no-cache-dir --upgrade pip \
1716
&& pip install --no-cache-dir --timeout 1000 .
@@ -34,7 +33,7 @@ RUN useradd -m -u 1000 appuser
3433
# Copy Python site-packages and code
3534
COPY --from=python-builder /usr/local/lib/python3.13/site-packages/ \
3635
/usr/local/lib/python3.13/site-packages/
37-
COPY src/ ./src/
36+
COPY src/ ./
3837

3938
# Set permissions
4039
RUN chown -R appuser:appuser /app

0 commit comments

Comments
 (0)