vbrandl.net/Dockerfile
Valentin Brandl fe6baf4ac0
All checks were successful
continuous-integration/drone/push Build is passing
Remove existing files
2019-05-01 23:24:40 +02:00

27 lines
607 B
Docker

FROM plugins/hugo as build
WORKDIR /usr/src/build
COPY ./ ./
RUN apk --no-cache add --update make
RUN /bin/drone-hugo && \
make -C public/ -f ../Makefile
# find ./ -type f \( \
# -name "*.html" \
# -o -name "*.js" \
# -o -name "*.css" \
# -o -name "*.xml" \
# -o -name "*.json" \
# -o -name "*.txt" \
# -o -name "*.png" \
# -o -name "*.ico" \
# -o -name "*.svg" \
# -not -name "*.gz" \) \
# -exec gzip -v -k -9 "{}" \;
# Stage: Run
FROM nginx:alpine
RUN rm /usr/share/nginx/html/*
COPY --from=build /usr/src/build/public /usr/share/nginx/html/
EXPOSE 80