miniflux-filter/Dockerfile
Renovate Bot d3918f6a62 chore(deps): update alpine docker tag to v3.20.2 (#24)
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
2024-07-23 02:09:31 +02:00

26 lines
376 B
Docker

FROM alpine:3.20.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"]