diff --git a/Dockerfile b/Dockerfile index 2b0aa09..b6c10e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,4 +11,4 @@ RUN npm run build FROM nginx:alpine AS basic COPY ./nginx/nginx.conf /etc/nginx/nginx.conf COPY --from=build /app/dist /usr/share/nginx/html -EXPOSE 80 \ No newline at end of file +EXPOSE 8080 \ No newline at end of file diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 7eb11e5..a1a6187 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -6,7 +6,7 @@ events { http { server { - listen 80; + listen 8080; server_name _; root /usr/share/nginx/html;