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
COPY assets/        /usr/share/nginx/html/assets
7
8
EXPOSE 80