Skip to content

Commit 3c22141

Browse files
authored
Merge pull request #2 from authzed/fix-path
Fix path of entrypoint
2 parents 86165bc + 286058b commit 3c22141

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ FROM quay.io/authzed/zed:latest as base
33
FROM ubuntu:22.04
44
COPY --from=base /usr/local/bin/zed /zed
55
RUN chmod +x /zed
6-
COPY entrypoint.sh .
7-
RUN chmod +x entrypoint.sh
8-
ENTRYPOINT ["bash", "./entrypoint.sh"]
6+
COPY entrypoint.sh /entrypoint.sh
7+
RUN chmod +x /entrypoint.sh
8+
ENTRYPOINT ["bash", "/entrypoint.sh"]

0 commit comments

Comments
 (0)