mirror of
https://codeberg.org/Mo8it/How_To_Linux.git
synced 2024-11-21 19:18:02 +00:00
4 lines
122 B
Docker
4 lines
122 B
Docker
FROM docker.io/library/nginx:alpine
|
|
EXPOSE 80
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
|
COPY ./book/ /usr/share/nginx/html/
|