6 lines
164 B
Docker
6 lines
164 B
Docker
FROM nginx:alpine
|
|
|
|
COPY . /var/www/html
|
|
COPY docker/nginx/default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
RUN sed -i 's/^user nginx;/user root;/' /etc/nginx/nginx.conf |