From 28ab1b138c567c7101de6e4ed152bb22bd625a1b Mon Sep 17 00:00:00 2001 From: azurejelly <178000437+azurejelly@users.noreply.github.com> Date: Thu, 16 Oct 2025 10:09:25 -0400 Subject: [PATCH] refactor(docker): add `EXPOSE` instruction While `nginx:stable-alpine` already exposes 80/tcp by default (visible with `docker image inspect`), I figured it was still worth adding so that the port which VERT uses when running inside a container is a bit more clear. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e076900..e66570d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,8 @@ RUN bun run build FROM nginx:stable-alpine +EXPOSE 80/tcp + COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf COPY --from=builder /app/build /usr/share/nginx/html \ No newline at end of file