12 lines
211 B
Docker
12 lines
211 B
Docker
# Use a lightweight Nginx image
|
|
FROM nginx:alpine
|
|
|
|
# Copy the static files to the Nginx html directory
|
|
COPY . /usr/share/nginx/html/
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Start Nginx
|
|
CMD ["nginx", "-g", "daemon off;"]
|