
FROM nginx:stable-alpine
ARG NODE_ENV=dev
COPY "nginx_${NODE_ENV}.conf" /etc/nginx/conf.d/default.conf
COPY dist/ /usr/share/nginx/html
CMD ["nginx", "-g", "daemon off;"]