miniflux-filter/Dockerfile
Renovate Bot 675b493c6e
Some checks failed
lint, build and push / lint (push) Failing after 11m39s
lint, build and push / build (push) Has been cancelled
chore(deps): update alpine docker tag to v3.20.3 (#30)
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
2024-09-07 14:23:49 +02:00

26 lines
376 B
Docker

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