Files
Websites/Dockerfile
2026-02-06 09:04:25 +01:00

9 lines
158 B
Docker

FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html/*
COPY ["Profice WebSite/", "/usr/share/nginx/html/"]
RUN chmod -R 755 /usr/share/nginx/html/
EXPOSE 80