add dockerfile with nginx

This commit is contained in:
2024-08-25 21:11:56 +07:00
parent dd22e8e29e
commit 5eb58cb3e2
3 changed files with 18 additions and 1 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
ARG NGINX_VERSION=1.27.1
FROM nginx:${NGINX_VERSION}-alpine
COPY css /opt/litterlink/css
COPY fonts /opt/litterlink/fonts
COPY images /opt/litterlink/images
COPY templates /etc/nginx/templates
COPY index.html /opt/litterlink/index.html