
# Stage Webserver
FROM nginx:stable-alpine
COPY nginx/nginx.conf /etc/nginx/conf.d/default.conf
COPY /dist /usr/share/nginx/html/p2l-admin
CMD ["nginx", "-g", "daemon off;"]
