FROM nginx:1.18

COPY nginx-conf/nginx.conf /etc/nginx/nginx.conf

COPY dist /usr/share/nginx/html

EXPOSE 80

CMD ["nginx", "-g", "daemon off;"]