mg
97ee6ee4c5
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/miniflux-filter#5 Co-authored-by: mg <michael.grote@posteo.de> Co-committed-by: mg <michael.grote@posteo.de>
15 lines
339 B
Text
15 lines
339 B
Text
FROM ubuntu:focal
|
|
|
|
# hadolint ignore=DL3008
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends bash curl ca-certificates jq \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& mkdir -p /data \
|
|
&& touch /data/filter.txt
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./filter.sh /app/filter.sh
|
|
|
|
CMD ["bash", "/app/filter.sh"]
|