Project

General

Profile

1 49598 stefanos.g
FROM nginx:alpine
2
3
COPY nginx.conf /etc/nginx/nginx.conf
4
COPY index.html /usr/share/nginx/html/
5
COPY dist/      /usr/share/nginx/html/dist
6 53117 myrto.kouk
COPY assets/    /usr/share/nginx/html/assets
7 49598 stefanos.g
8
EXPOSE 80