This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
adlin/pkg/monit/Dockerfile
Renovate Bot cfb415ff26
Some checks are pending
continuous-integration/drone/push Build is pending
chore(deps): update dependency alpine to v3.16
2022-06-06 07:31:02 +00:00

18 lines
339 B
Docker

FROM alpine:3.16 AS mirror
RUN mkdir -p /out/etc/apk/ && \
cp /etc/apk/repositories /out/etc/apk/ && \
cp -r /etc/apk/keys /out/etc/apk/keys
RUN apk add --no-cache --initdb -p /out \
curl \
iputils \
jq \
tcpdump
FROM scratch
MAINTAINER Pierre-Olivier Mercier <nemunaire@nemunai.re>
COPY --from=mirror /out/ /