This commit is contained in:
sionow
2026-01-27 15:04:04 +01:00
parent 9e4c84f01b
commit ee73bcc35a
37 changed files with 9 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM nginx:alpine
COPY src /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]