10 lines
194 B
Docker
10 lines
194 B
Docker
FROM nginx:1.19.7
|
|
|
|
LABEL MAINTAINER="Chris Diesch <chris@quarterhomes.com>"
|
|
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
|
|
RUN apt-get update
|
|
|
|
COPY docker/nginx.conf /etc/nginx/conf.d/quarter_web.conf
|