add dockerfiles

This commit is contained in:
2026-06-08 14:07:38 +07:00
parent af3816ab2c
commit ac121bb070
2 changed files with 13 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
FROM nginx:alpine
COPY . /usr/share/nginx/html
COPY default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
+9
View File
@@ -0,0 +1,9 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}