6 lines
182 B
Docker
6 lines
182 B
Docker
# Generated by Hermes — frontend (nginx reverse proxy to the backend)
|
|
FROM nginx:alpine
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|