Files
Websites/Dockerfile
2026-02-06 09:52:50 +00:00

9 lines
150 B
Docker

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