6 lines
206 B
Docker
6 lines
206 B
Docker
FROM nginx:1.24-bullseye
|
|
|
|
COPY ./site-html /var/www/blog
|
|
COPY ./site-repo/nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY ./site-repo/counter /var/www/counter
|
|
COPY ./site-repo/robots.txt /var/www/robots.txt
|