diff --git a/.gitignore b/.gitignore index e2ab160..8b29b24 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -scottyah-blog/public/* +hugo-content/public/* diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0729878 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM alpine:latest + +RUN apk add --no-cache git hugo +RUN git clone https://github.com/scottyah/scottyah-blog.git +WORKDIR scottyah-blog + +EXPOSE 1313:1313 +CMD ["hugo", "server", "--bind", "0.0.0.0", "-D"]