mirror of
https://github.com/ClusterCockpit/cc-docker.git
synced 2024-11-10 10:17:26 +01:00
9 lines
154 B
Docker
9 lines
154 B
Docker
FROM nginx:mainline-alpine
|
|
|
|
RUN mkdir -p /etc/nginx/templates
|
|
COPY templates/* /etc/nginx/templates/
|
|
COPY nginx.conf /etc/nginx/
|
|
|
|
CMD ["nginx"]
|
|
EXPOSE 80
|