Files
Websites/Dockerfile
2026-02-05 15:09:23 +00:00

9 lines
152 B
Docker

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