summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: d909803891adc4c2f02c747894a37aa62fb7939f (plain)
1
2
3
4
5
6
7
8
FROM alpine

RUN apk add --no-cache hugo

WORKDIR /usr/src
COPY . .

CMD [ "hugo", "serve", "--baseURL", "https://www.tyil.nl","--bind", "::" ]