From: Giorgio Ravera Date: Mon, 26 Jan 2026 20:28:44 +0000 (+0100) Subject: Removed export in Dockerfile X-Git-Tag: v0.0.1~6 X-Git-Url: http://git.giorgioravera.it/?a=commitdiff_plain;h=7c5ae9156efbf7824964df7ea2a3a69e2969a0dd;p=network-manager.git Removed export in Dockerfile --- diff --git a/Dockerfile b/Dockerfile index c84995b..2cbe9ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,10 +48,5 @@ COPY --from=builder /app/settings settings # Ensure Python sees the installed packages ENV PYTHONPATH="/usr/local/lib/python3.12/site-packages" -ENV HTTP_PORT=8000 - -# Expose the port dynamically -EXPOSE ${HTTP_PORT} - ENTRYPOINT ["/app/entrypoint.py"] CMD ["python3", "-u", "-m", "backend.main"]