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.
This commit is contained in:
azurejelly 2025-10-16 10:09:25 -04:00
parent 93c98d9d49
commit 28ab1b138c
No known key found for this signature in database
GPG Key ID: 78C7CB2FBB62D96D
1 changed files with 2 additions and 0 deletions

View File

@ -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