New package monit
This commit is contained in:
parent
60dd57c0ee
commit
6d6af5f7f4
2 changed files with 17 additions and 0 deletions
16
pkg/monit/Dockerfile
Normal file
16
pkg/monit/Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
FROM alpine 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
|
||||||
|
|
||||||
|
|
||||||
|
FROM scratch
|
||||||
|
MAINTAINER Pierre-Olivier Mercier <nemunaire@nemunai.re>
|
||||||
|
|
||||||
|
COPY --from=mirror /out/ /
|
1
pkg/monit/build.yml
Normal file
1
pkg/monit/build.yml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
image: monit
|
Reference in a new issue