aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2025-03-12 21:31:41 -0700
committerMax Resnick <max@ofmax.li>2025-03-12 21:31:41 -0700
commitbe3651b08b1fb59e134860e374ebe130af95ee2f (patch)
tree225f5f65eac106e298d70055a5f107a63ecd3196
parent9f3b6999c5c63d9322e6516f7635fd2f983d7c70 (diff)
downloadunbound-adblock-config-be3651b08b1fb59e134860e374ebe130af95ee2f.tar.gz
fix: add PATH, change bin path0.0.3
-rw-r--r--Dockerfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index acf73f1..a76f8ce 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,6 +10,7 @@ RUN just build $version
FROM scratch
-COPY --from=build /build/_build/bin/unbound-ads /unbound-ads
+COPY --from=build /build/_build/bin bin
WORKDIR /
-ENTRYPOINT ["unbound-ads"]
+ENV PATH=bin
+ENTRYPOINT ["/bin/unbound-ads"]