Files
ScoutingApp2022/webserver/Dockerfile.nginx
T

7 lines
215 B
Docker
Raw Normal View History

2022-04-08 15:28:08 +01:00
FROM nginx:1-alpine
# COPY --from=build-step /app/build /usr/share/nginx/html
RUN rm /etc/nginx/conf.d/default.conf
# COPY nginx/nginx.conf /etc/nginx/conf.d
EXPOSE 80
# EXPOSE 443
CMD ["nginx", "-g", "daemon off;"]