coopcloud.tech/Dockerfile

12 lines
218 B
Docker
Raw Permalink Normal View History

2021-03-30 19:50:52 +00:00
FROM klakegg/hugo:ext-debian
2021-01-09 18:42:21 +00:00
2021-03-30 19:50:52 +00:00
RUN apt update && apt install -y curl git python3
EXPOSE 8000
2021-01-09 18:42:21 +00:00
2021-01-09 18:45:21 +00:00
COPY . /src/
2021-01-09 18:42:21 +00:00
2021-03-30 19:50:52 +00:00
ENTRYPOINT ["/bin/bash"]
CMD ["-c", "hugo && python3 -m http.server --bind 0.0.0.0 --directory public 8000"]