From 5f1e5508f0be9f47ad8ebeb6a2f2307dd3e90dbc Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Sun, 17 Aug 2025 12:28:22 +0100 Subject: [PATCH] Correct default port for Docker --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 217c72d..3302f03 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,5 +16,5 @@ RUN --mount=type=cache,target=/root/.cache/uv \ FROM python:${PYTHON_VERSION}-slim-bookworm COPY --from=builder --chown=app:app /app /app ENV PATH="/app/.venv/bin:$PATH" -EXPOSE 80/tcp +EXPOSE 5000/tcp CMD ["smsbot"]