The source of the JILITS website https://jilits.se
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
website/Containerfile

18 lines
247 B

FROM alpine
ENV HUGO_ENVIRONMENT=production
WORKDIR /app
RUN apk add git hugo
RUN adduser \
--disabled-password \
--gecos "" \
--uid 1000 \
hugo
COPY . /app
RUN chown -R hugo:hugo /app
USER hugo
CMD hugo server --bind 0.0.0.0