| 12345678 |
- FROM nginx:1.29.4
- WORKDIR /usr/share/nginx/html/
- #RUN mkdir -p /usr/share/nginx/html/
- #RUN ls -ls
- COPY ./html /usr/share/nginx/html/
- COPY ./nginx.conf /etc/nginx/conf.d/default.conf
- COPY ./mime.types /etc/nginx/mime.types
- CMD ["nginx", "-g", "daemon off;"]
|