summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index e44e0e9..9d21131 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,7 +17,8 @@ FROM nginx:1.27-alpine AS runtime
WORKDIR /usr/share/nginx/html
COPY --from=builder /app/dist ./
+COPY nginx/default.conf /etc/nginx/conf.d/default.conf
-EXPOSE 80
+EXPOSE 8380
CMD ["nginx", "-g", "daemon off;"]