6 lines
164 B
Docker
6 lines
164 B
Docker
FROM nginx:alpine
|
|
# Copy the static files to the nginx html directory
|
|
COPY ./www /usr/share/nginx/html
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"] |