This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
coopcloud.tech/Dockerfile

12 lines
218 B
Docker

FROM klakegg/hugo:ext-debian
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"]