added dockerfile and updated Readme

This commit is contained in:
cpu
2025-03-22 23:17:40 +01:00
parent fdb6e5e618
commit 21cb105cd0
2 changed files with 78 additions and 2 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Use the official Nginx image as the base image
FROM nginx:alpine
# Remove the default Nginx static files
RUN rm -rf /usr/share/nginx/html/*
# Copy all your app's files into the Nginx directory
COPY . /usr/share/nginx/html
# Expose port 80
EXPOSE 80