All checks were successful
Build Container / detect (push) Successful in 2s
Build Container (Nix) / detect (push) Successful in 2s
Build Container (Nix) / build (miniflux) (push) Successful in 3s
Build Container (Nix) / build (prometheus) (push) Successful in 3s
Build Container (Nix) / build (teslamate) (push) Successful in 2s
Build Container / build (miniflux) (push) Successful in 1m14s
Build Container / build (teslamate) (push) Successful in 13m42s
Build Container / build (prometheus) (push) Successful in 15m20s
Created miniflux mirror at mirrors/miniflux. All three containers now clone from forge.ops.eblu.me/mirrors/ instead of GitHub directly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
859 B
Docker
32 lines
859 B
Docker
# Miniflux RSS feed reader
|
|
# Based on upstream packaging/docker/alpine/Dockerfile
|
|
|
|
ARG CONTAINER_APP_VERSION=2.2.17
|
|
ARG MINIFLUX_VERSION=${CONTAINER_APP_VERSION}
|
|
|
|
FROM golang:alpine3.22 AS build
|
|
|
|
ARG MINIFLUX_VERSION
|
|
RUN apk add --no-cache build-base git make
|
|
|
|
# Clone specific version
|
|
RUN git clone --depth 1 --branch ${MINIFLUX_VERSION} \
|
|
https://forge.ops.eblu.me/mirrors/miniflux.git /go/src/app
|
|
|
|
WORKDIR /go/src/app
|
|
RUN make miniflux
|
|
|
|
FROM alpine:3.22
|
|
|
|
LABEL org.opencontainers.image.title=Miniflux
|
|
LABEL org.opencontainers.image.description="Miniflux is a minimalist and opinionated feed reader"
|
|
LABEL org.opencontainers.image.source=https://github.com/miniflux/v2
|
|
|
|
EXPOSE 8080
|
|
ENV LISTEN_ADDR=0.0.0.0:8080
|
|
|
|
RUN apk --no-cache add ca-certificates tzdata
|
|
COPY --from=build /go/src/app/miniflux /usr/bin/miniflux
|
|
|
|
USER 65534
|
|
CMD ["/usr/bin/miniflux"]
|