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

RUN apk add --no-cache hugo git nginx openssh

WORKDIR /app

EXPOSE 8080/tcp

CMD git clone "$REPO" ./ && /bin/sh -c './watch.sh' && hugo && nginx -g 'daemon off;'