mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
9 lines
163 B
Plaintext
9 lines
163 B
Plaintext
FROM nginx:1.19-alpine
|
|
|
|
#config
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
|
|
|
#content
|
|
COPY ./*.html /usr/share/nginx/html/
|
|
COPY ./*.css /usr/share/nginx/html/
|