2020-05-21 02:42:35 +00:00
|
|
|
FROM alpine:latest
|
2020-04-10 23:56:57 +00:00
|
|
|
|
|
|
|
# This should be mounted with docker run command
|
|
|
|
WORKDIR /src
|
|
|
|
|
2020-05-21 02:42:35 +00:00
|
|
|
# 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 && \
|
2020-06-13 19:24:09 +00:00
|
|
|
apk add --no-cache hugo
|
2020-04-10 23:56:57 +00:00
|
|
|
|
|
|
|
# Run the development server
|
2020-05-21 02:42:35 +00:00
|
|
|
ENTRYPOINT hugo server --bind 0.0.0.0
|