Update Dockerfile

This commit is contained in:
Zakaria 2026-05-08 15:44:12 +00:00
parent 43ebf18ba8
commit 07cad1ffda

View File

@ -1,2 +1,11 @@
# Use the official Nginx image as the base image
FROM nginx:alpine
# Copy the local files to the Nginx default directory
COPY . /usr/share/nginx/html
# Expose port 80
EXPOSE 80
# Start Nginx when the container launches
CMD ["nginx", "-g", "daemon off;"]# Use the official Nginx image as the base image