miniflux-filter/Dockerfile
Renovate Bot 79076626ad
All checks were successful
lint, build and push / lint (push) Successful in 28s
lint, build and push / build (push) Successful in 41s
chore(deps): update alpine docker tag to v3.21.1 (#44)
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
2025-01-07 09:06:06 +01:00

25 lines
376 B
Docker

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