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.
1 parent 3f5ff67 commit a3324e0Copy full SHA for a3324e0
Dockerfile
@@ -37,12 +37,11 @@ RUN set -eux; \
37
38
COPY --from=python-builder --chown=$UID:$GID /usr/local/lib/python3.13/site-packages/ /usr/local/lib/python3.13/site-packages/
39
COPY --chown=$UID:$GID src/ ./
40
-COPY --chown=$UID:$GID run_server.py ./
41
42
RUN set -eux; \
43
chown -R appuser:appuser /app
44
USER appuser
45
46
EXPOSE 8000
47
EXPOSE 9090
48
-CMD ["python", "run_server.py"]
+CMD ["python", "-m", "server"]
0 commit comments