mirror of
https://codeberg.org/Mo8it/How_To_Linux.git
synced 2024-11-22 06:28:02 +00:00
5 lines
122 B
Text
5 lines
122 B
Text
|
FROM docker.io/library/nginx:alpine
|
||
|
EXPOSE 80
|
||
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
||
|
COPY ./book/ /usr/share/nginx/html/
|