Files
Portefolio/dockerfile
2025-12-07 12:37:01 +01:00

11 lines
153 B
Plaintext

FROM nginx:alpine
LABEL authors="Noam"
RUN rm -rf /usr/share/nginx/html/*
COPY . /usr/share/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]