This repository has been archived on 2021-08-14. You can view files and clone it, but cannot push or open issues/pull-requests.
bever-dam/Dockerfile

61 lines
1.4 KiB
Docker
Raw Normal View History

2021-07-19 18:43:55 +02:00
# Global build argument
ARG THTTPD_VER=2.29
2021-07-19 20:46:16 +02:00
ARG DI_VER=1.2.5
2021-07-19 18:43:55 +02:00
2021-07-19 20:46:16 +02:00
FROM ubuntu:latest AS builder
2021-07-08 22:38:03 +02:00
2021-07-19 20:46:16 +02:00
# =====BUILD BINARIES=====
2021-07-19 18:43:55 +02:00
WORKDIR /usr/src
ARG THTTPD_VER
2021-07-19 20:46:16 +02:00
ARG DI_VER
2021-07-19 18:43:55 +02:00
# Install dependencies & build thttpd
2021-07-19 20:46:16 +02:00
RUN apt update && \
apt install -y --no-install-recommends \
curl \
ca-certificates \
hugo \
musl-dev \
musl-tools \
build-essential && \
2021-07-19 18:43:55 +02:00
curl -sSL "https://www.acme.com/software/thttpd/thttpd-$THTTPD_VER.tar.gz" | \
tar xzf - && \
cd "thttpd-$THTTPD_VER" && \
2021-07-19 20:46:16 +02:00
CC="musl-gcc -static" ./configure && \
2021-07-19 20:05:35 +02:00
make -j$(nproc)
2021-07-19 18:43:55 +02:00
2021-07-19 20:46:16 +02:00
# Build dumb-init
RUN curl -sSL "https://github.com/Yelp/dumb-init/archive/refs/tags/v$DI_VER.tar.gz" | \
tar xzf - && \
cd "dumb-init-$DI_VER" && \
CC="musl-gcc -static" make build
2021-07-19 18:43:55 +02:00
2021-07-19 20:46:16 +02:00
# =====BUILD BLOG=====
2021-07-19 18:43:55 +02:00
WORKDIR /usr/src/app
2021-07-08 22:38:03 +02:00
# Copy site files for building
COPY . ./
# Generate the site
RUN hugo --minify
2021-07-19 18:43:55 +02:00
# ====CREATE RELEASE IMAGE====
2021-07-19 20:46:16 +02:00
FROM scratch
2021-07-19 18:43:55 +02:00
ARG THTTPD_VER
2021-07-19 20:46:16 +02:00
ARG DI_VER
2021-07-19 18:43:55 +02:00
# Copy over binary & static files
2021-07-19 20:46:16 +02:00
COPY --from=builder /usr/src/thttpd-$THTTPD_VER/thttpd /bin/thttpd
COPY --from=builder /usr/src/dumb-init-$DI_VER/dumb-init /bin/dumb-init
COPY --from=builder /usr/src/app/public /static
2021-07-19 18:43:55 +02:00
COPY thttpd.conf /etc/thttpd.conf
2021-07-19 19:00:07 +02:00
# A static file server doesn't need root
2021-07-19 20:05:35 +02:00
USER 82:82
2021-07-08 22:38:03 +02:00
2021-07-19 20:46:16 +02:00
ENTRYPOINT [ "/bin/dumb-init", "--" ]
CMD [ "/bin/thttpd", "-D", "-C", "/etc/thttpd.conf" ]