Files
homelab/homepage/Dockerfile
T
2025-11-26 00:01:43 +01:00

10 lines
164 B
Docker

# everyone use that
FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html/*
COPY ./files /usr/share/nginx/html
EXPOSE 80
# Start
CMD ["nginx", "-g", "daemon off;"]