miniflux-filter/Dockerfile
Renovate Bot f88d1d68a0
All checks were successful
lint, build and push / lint (push) Successful in 5s
lint, build and push / build (push) Successful in 21s
chore(deps): update alpine docker tag to v3.21.0 (#40)
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
2024-12-06 01:07:31 +01:00

25 lines
376 B
Docker

FROM alpine:3.21.0
# 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"]