This commit is contained in:
2026-01-13 00:57:02 +05:00
parent 1cfb0c55a8
commit 8b06d65d4d
7 changed files with 200 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM nginx:alpine
# Copy custom nginx configuration
COPY .build/prod/nginx.conf /etc/nginx/nginx.conf
# Copy static frontend files
COPY Frontend/ /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]