From 93d47352be772345a4bbef1cd06a79fa1a461316 Mon Sep 17 00:00:00 2001 From: Bastian Gruber Date: Tue, 22 Jul 2025 13:20:00 +0200 Subject: [PATCH] Adjust Dockerfile for new port --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 23c4ba2..6701a6e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,10 +45,10 @@ USER ohttp # Set default environment variables ENV RUST_LOG=debug,ohttp_gateway=debug ENV PORT=8000 -ENV BACKEND_URL=http://localhost:8000 +ENV BACKEND_URL=http://localhost:8080 ENV REQUEST_TIMEOUT=30 ENV KEY_ROTATION_ENABLED=false -EXPOSE 8080 +EXPOSE 8000 CMD ["ohttp-gateway"]