fix the default missing config based off example config, this was affecting #443

This commit is contained in:
Cody Lee
2022-12-09 10:01:47 -06:00
parent 8a3bb1a562
commit 4259d4f396
3 changed files with 19 additions and 3 deletions

View File

@@ -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" ]