8 lines
165 B
Docker
8 lines
165 B
Docker
|
|
# Use the lightest official nginx image
|
||
|
|
FROM nginx:alpine
|
||
|
|
|
||
|
|
# Copy static files to the nginx server directory
|
||
|
|
COPY . /usr/share/nginx/html
|
||
|
|
|
||
|
|
# Expose port 80
|
||
|
|
EXPOSE 80
|