mirror of
https://github.com/unpoller/unpoller.git
synced 2026-04-05 08:54:00 -04:00
fix the default missing config based off example config, this was affecting #443
This commit is contained in:
10
Dockerfile
10
Dockerfile
@@ -1,5 +1,15 @@
|
||||
FROM busybox:latest as builder
|
||||
# we have to do this hop because distroless is bare without common shell commands
|
||||
|
||||
RUN mkdir -p /etc/unpoller
|
||||
# copy over example config for cnfg environment-based default config
|
||||
COPY examples/up.conf.example /etc/unpoller/up.conf
|
||||
COPY unpoller_manual.html /etc/unpoller/manual.html
|
||||
COPY README.html /etc/unpoller/readme.html
|
||||
|
||||
FROM gcr.io/distroless/static-debian11
|
||||
|
||||
COPY unpoller /usr/bin/unpoller
|
||||
COPY --from=builder /etc/unpoller /etc/unpoller
|
||||
|
||||
ENTRYPOINT [ "/usr/bin/unpoller" ]
|
||||
|
||||
Reference in New Issue
Block a user