Add Dockerfile

This commit is contained in:
koalasat
2025-02-12 20:30:16 +01:00
parent 923ab8800c
commit 637ef8e23f

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM nginx:stable-alpine
COPY build /usr/share/nginx/html
EXPOSE 80
EXPOSE 443
CMD ["nginx", "-g", "daemon off;"]