Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

follow hugo best practices #742

Merged
merged 1 commit into from
Jan 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 21 additions & 16 deletions Dockerfile-docs
Original file line number Diff line number Diff line change
@@ -1,28 +1,33 @@
FROM alpine:latest
MAINTAINER Aaron Hurt <ahurt@ena.com>
FROM alpine:latest AS build

ARG hugo_version=0.62.2
EXPOSE 1313

## install hugo and other needed packages
RUN apk update && \
apk add --no-cache ca-certificates && \
wget -q -O - \
## fetch and install hugo
RUN wget -q -O - \
https://github.com/gohugoio/hugo/releases/download/v${hugo_version}/hugo_${hugo_version}_Linux-64bit.tar.gz \
| tar -zxf - hugo && \
mv hugo /usr/local/bin/hugo && \
chmod 0755 /usr/local/bin/hugo

## populate hugo source
COPY docs /srv
## generate static content
COPY docs /opt/docs
WORKDIR /opt/docs
RUN /usr/local/bin/hugo --buildDrafts --cleanDestinationDir --destination /opt/output

FROM alpine:latest

## install thttpd (http://acme.com/software/thttpd/)
RUN apk add --no-cache thttpd

## copy static assets form build
COPY --from=build /opt/output /var/www/http

## setup hugo resource cache
RUN mkdir -p /srv/resources && \
chown nobody:nobody /srv/resources
## use package user
USER thttpd

## do not run as root
USER nobody
EXPOSE 1180

## launch hugo and serve docs
ENTRYPOINT ["/usr/local/bin/hugo"]
CMD ["serve", "--disableFastRender", "--bind", "0.0.0.0", "--source", "/srv"]
## launch thttpd to serve static content
ENTRYPOINT ["/usr/sbin/thttpd"]
CMD ["-p", "1180", "-d", "/var/www/http", "-l", "/dev/stdout", "-D"]