10 lines
192 B
Docker
10 lines
192 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 nginx.conf /etc/nginx/conf.d/quarter_internal.conf
|