miniflux-filter/Dockerfile
Renovate Bot 9580d56006
All checks were successful
lint, build and push / lint (push) Successful in 33s
lint, build and push / build (push) Successful in 49s
chore(deps): update alpine docker tag to v3.21.2 (#45)
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
2025-01-08 21:06:01 +01:00

25 lines
376 B
Docker

FROM alpine:3.21.2
# hadolint ignore=DL3018
RUN apk add --no-cache \
bash \
curl \
ca-certificates \
jq \
curl \
findutils \
sed \
coreutils \
gawk \
iputils-ping \
&& mkdir /data \
&& touch /data/filter.txt
# findutils = xargs
# coreutils = sort
WORKDIR /app
COPY ./filter.sh /app/filter.sh
CMD ["bash", "/app/filter.sh"]