diff --git a/Dockerfile b/Dockerfile index 660ab9f..fa48615 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,6 @@ FROM nginx:alpine COPY --from=builder /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf -EXPOSE 80 +EXPOSE 3000 CMD ["nginx", "-g", "daemon off;"] diff --git a/nginx.conf b/nginx.conf index 57c3b86..2c3b4d5 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,5 +1,5 @@ server { - listen 80; + listen 3000; server_name _; root /usr/share/nginx/html; index index.html;