coopcloud.tech/Dockerfile
decentral1se 57183c55ff
All checks were successful
continuous-integration/drone/push Build is passing
Use HTTPS for submodule git clones
2021-03-30 21:58:12 +02:00

14 lines
263 B
Docker

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