9 lines
197 B
Docker
9 lines
197 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy our default server config; site content is not baked into the image.
|
|
COPY nginx/default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|