website/Dockerfile.dev

14 lines
362 B
Docker
Raw Normal View History

FROM alpine:latest
# This should be mounted with docker run command
WORKDIR /src
RUN cd /src
# Get hugo -- using the edge branch to get latest version
RUN sed -i -e 's/v[[:digit:]]\..*\//edge\//g' /etc/apk/repositories
RUN apk update && apk upgrade && \
apk add --no-cache hugo=0.69.1-r0
# Run the development server
ENTRYPOINT hugo server --bind 0.0.0.0