feat: first post

pinch it off
This commit is contained in:
2024-11-27 20:39:44 +01:00
parent 481acae133
commit 1b2faa27dc
6 changed files with 106 additions and 7 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM alpine
RUN apk add hugo git
WORKDIR /hugo
RUN hugo new site /hugo
RUN git clone https://github.com/yihui/hugo-xmin.git themes/hugo-xmin
ADD hugo.toml /hugo/hugo.toml
ADD content /hugo/content
CMD ["hugo", "serve", "--bind", "0.0.0.0"]