Switched to thttpd-based Docker image
Some checks failed
continuous-integration/drone the build failed

This commit is contained in:
Jef Roosens 2021-07-19 18:43:55 +02:00
parent 31ee1dae7f
commit a2aaaa81ec
Signed by: Jef Roosens
GPG key ID: B580B976584B5F30
4 changed files with 38 additions and 34 deletions

View file

@ -1,9 +1,25 @@
# Global build argument
ARG THTTPD_VER=2.29
FROM alpine:latest AS builder
WORKDIR /usr/src/app
# Install Hugo
RUN apk add --no-cache hugo
# =====BUILD thttpd=====
WORKDIR /usr/src
ARG THTTPD_VER
# Install dependencies & build thttpd
RUN apk update && \
apk add --no-cache curl hugo build-base && \
curl -sSL "https://www.acme.com/software/thttpd/thttpd-$THTTPD_VER.tar.gz" | \
tar xzf - && \
cd "thttpd-$THTTPD_VER" && \
./configure && \
make
# =====BUILD THE BLOG=====
WORKDIR /usr/src/app
# Copy site files for building
COPY . ./
@ -12,7 +28,19 @@ COPY . ./
RUN hugo --minify
FROM nginx:alpine
# ====CREATE RELEASE IMAGE====
FROM alpine:latest
ARG THTTPD_VER
COPY nginx.conf /etc/nginx/nginx.conf
COPY --from=builder /usr/src/app/public /usr/share/nginx/html
# Install dumb-init
RUN apk update && \
apk add --no-cache dumb-init
# Copy over binary & static files
COPY --from=builder /usr/src/thttpd-$THTTPD_VER/thttpd /usr/local/bin/thttpd
COPY --from=builder /usr/src/app/public /var/www/html
COPY thttpd.conf /etc/thttpd.conf
ENTRYPOINT [ "dumb-init", "--" ]
CMD [ "/usr/local/bin/thttpd", "-D", "-C", "/etc/thttpd.conf" ]