zkt25/Dockerfile

11 lines
242 B
Docker

# Use the official nginx image
FROM nginx:alpine
# Copy the game files into the nginx html folder
COPY index.html /usr/share/nginx/html/
COPY style.css /usr/share/nginx/html/
COPY script.js /usr/share/nginx/html/
# Expose port 80
EXPOSE 80