This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
stream-demo/tools/docker/nginx/Dockerfile
2020-07-22 10:28:10 +01:00

10 lines
150 B
Docker

FROM nginx:1
RUN rm /etc/nginx/conf.d/default.conf
COPY tools/docker/nginx/conf.d/* /etc/nginx/conf.d/
COPY web /srv/app/web
WORKDIR /srv/app/web