We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bfdc638 + 2f3cf14 commit 1c80d7aCopy full SHA for 1c80d7a
Dockerfile
@@ -11,7 +11,6 @@ RUN apt-get update \
11
COPY pyproject.toml .
12
COPY src/ ./src/
13
14
-
15
# Install runtime dependencies defined in pyproject.toml
16
RUN pip install --no-cache-dir --upgrade pip \
17
&& pip install --no-cache-dir --timeout 1000 .
@@ -34,7 +33,7 @@ RUN useradd -m -u 1000 appuser
34
33
# Copy Python site-packages and code
35
COPY --from=python-builder /usr/local/lib/python3.13/site-packages/ \
36
/usr/local/lib/python3.13/site-packages/
37
-COPY src/ ./src/
+COPY src/ ./
38
39
# Set permissions
40
RUN chown -R appuser:appuser /app
0 commit comments