claiborne.soy/Dockerfile
2024-11-21 11:37:37 -05:00

6 lines
169 B
Docker

FROM nginx
COPY src /usr/share/nginx/html
RUN find /usr/share/nginx/html/ -type d -exec chmod 755 {} \; &&\
find /usr/share/nginx/html/ -type f -exec chmod 644 {} \;