We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 86165bc + 286058b commit 3c22141Copy full SHA for 3c22141
Dockerfile
@@ -3,6 +3,6 @@ FROM quay.io/authzed/zed:latest as base
3
FROM ubuntu:22.04
4
COPY --from=base /usr/local/bin/zed /zed
5
RUN chmod +x /zed
6
-COPY entrypoint.sh .
7
-RUN chmod +x entrypoint.sh
8
-ENTRYPOINT ["bash", "./entrypoint.sh"]
+COPY entrypoint.sh /entrypoint.sh
+RUN chmod +x /entrypoint.sh
+ENTRYPOINT ["bash", "/entrypoint.sh"]
0 commit comments