vieter/Dockerfile

57 lines
1.4 KiB
Docker
Raw Permalink Normal View History

FROM chewingbever/vlang:latest AS builder
2022-02-22 18:04:54 +01:00
ARG TARGETPLATFORM
ARG CI_COMMIT_SHA
ARG DI_VER=1.2.5
WORKDIR /app
2022-02-22 18:04:54 +01:00
# Build dumb-init
RUN curl -Lo - "https://github.com/Yelp/dumb-init/archive/refs/tags/v${DI_VER}.tar.gz" | tar -xzf - && \
cd "dumb-init-${DI_VER}" && \
make SHELL=/bin/sh && \
mv dumb-init .. && \
cd ..
# Copy over source code & build production binary
COPY src ./src
COPY Makefile ./
2022-01-15 10:36:23 +01:00
2022-02-22 18:04:54 +01:00
RUN if [ -n "${CI_COMMIT_SHA}" ]; then \
curl --fail \
-o vieter \
"https://s3.rustybever.be/vieter/commits/${CI_COMMIT_SHA}/vieter-$(echo "${TARGETPLATFORM}" | sed 's:/:-:g')" && \
chmod +x vieter ; \
else \
LDFLAGS='-lz -lbz2 -llzma -lexpat -lzstd -llz4 -static' make prod && \
mv pvieter vieter ; \
fi
FROM busybox:1.35.0
ENV PATH=/bin \
2022-04-07 15:21:27 +02:00
VIETER_REPOS_DIR=/data/repos \
2022-02-22 18:04:54 +01:00
VIETER_PKG_DIR=/data/pkgs \
VIETER_DOWNLOAD_DIR=/data/downloads \
VIETER_REPOS_FILE=/data/repos.json
COPY --from=builder /app/dumb-init /app/vieter /bin/
2022-02-22 18:04:54 +01:00
HEALTHCHECK --interval=30s \
--timeout=3s \
--start-period=5s \
CMD /bin/wget --spider http://localhost:8000/health || exit 1
2022-02-22 18:04:54 +01:00
RUN mkdir /data && \
chown -R www-data:www-data /data && \
mkdir -p '/var/spool/cron/crontabs' && \
echo '0 3 * * * /bin/vieter build' | crontab -
2022-02-22 18:04:54 +01:00
WORKDIR /data
2022-02-22 18:04:54 +01:00
USER www-data:www-data
2022-02-22 18:04:54 +01:00
ENTRYPOINT ["/bin/dumb-init", "--"]
CMD ["/bin/vieter", "server"]