10 lines
150 B
Text
10 lines
150 B
Text
|
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
|