5 lines
94 B
Docker
5 lines
94 B
Docker
|
FROM nginx:latest
|
||
|
# Add custom nginx config
|
||
|
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
|
||
|
|