Files
portfolio_yanis/dockerfile
2025-12-08 16:54:01 +01:00

11 lines
154 B
Plaintext

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