Renovate Bot
a0e1a81d87
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | alpine | final | major | `3` -> `20231219` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMy4yLjAiLCJ1cGRhdGVkSW5WZXIiOiIzMy4yLjAifQ==--> Reviewed-on: #10 Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net>
25 lines
378 B
Docker
25 lines
378 B
Docker
FROM alpine:20231219
|
|
|
|
# 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"]
|