This commit is contained in:
awscloude
2026-07-16 12:51:59 +06:00
parent cad40c31d1
commit 78261a90e1
11 changed files with 503 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM nginx:1.27-alpine
# Remove default config
RUN rm /etc/nginx/conf.d/default.conf
# Copy custom nginx config
COPY nginx.conf /etc/nginx/nginx.conf
# Copy web page
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]