Init this site

This commit is contained in:
decentral1se
2021-07-13 10:41:39 +02:00
commit 05eeee19b3
25 changed files with 838 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM klakegg/hugo:latest
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"]