Files
homelab/homepages/Dockerfile.forust
2025-12-07 02:17:19 +01:00

10 lines
171 B
Docker

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