deploy main site with docker

This commit is contained in:
Ari Yeger
2025-07-03 14:02:45 -04:00
parent 514a72db86
commit 6e61442129
2 changed files with 11 additions and 7 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
# Use a lightweight nginx image
FROM nginx:alpine
# Copy your static files into the nginx web directory
COPY . /usr/share/nginx/html
# Expose the port nginx serves from
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]