Skip to content

Commit bcc7d74

Browse files
committed
Use 8080 for consistency across Docker images
1 parent 8514972 commit bcc7d74

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM node:22-alpine AS builder
2-
EXPOSE 80
2+
EXPOSE 8080
33

44
WORKDIR /app
55
COPY package.json package-lock.json ./

deployment/default.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
server {
2-
listen 80;
3-
listen [::]:80;
2+
listen 8080;
3+
listen [::]:8080;
44
server_name localhost;
55
location / {
66
root /usr/share/nginx/html;

0 commit comments

Comments
 (0)