Files
coopcloud.tech/Dockerfile
decentral1se b00f22ed3c
All checks were successful
continuous-integration/drone/push Build is passing
fix: update to latest hugo
2025-10-03 18:29:40 +02:00

12 lines
228 B
Docker

FROM hugomods/hugo:debian-exts-0.151.0
RUN apt update && apt install -y curl git python3
EXPOSE 8000
COPY . /src/
ENTRYPOINT ["/bin/bash"]
CMD ["-c", "hugo && python3 -m http.server --bind 0.0.0.0 --directory public 8000"]