11 lines
265 B
Docker
11 lines
265 B
Docker
# Use official Nginx Alpine image
|
|
FROM nginx:alpine
|
|
|
|
# Copy static files
|
|
COPY index.html /usr/share/nginx/html/
|
|
COPY style.css /usr/share/nginx/html/
|
|
COPY script.js /usr/share/nginx/html/
|
|
|
|
# Copy nginx configuration
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|