diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-09-07 12:14:35 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-09-07 12:42:42 +0200 |
commit | c4df9be296ab56a7e5b2aa3f5e2f0ad060e0da96 (patch) | |
tree | e26d07338df8d7a6f7d8432ea9b1a226f463ece7 /Dockerfile | |
parent | add Makefile (diff) | |
download | cimple-c4df9be296ab56a7e5b2aa3f5e2f0ad060e0da96.tar.gz cimple-c4df9be296ab56a7e5b2aa3f5e2f0ad060e0da96.zip |
docker: add bin to PATH
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -31,7 +31,8 @@ RUN apk add --no-cache tini libgit2 ARG install_dir COPY --from=builder ["$install_dir", "$install_dir"] +ENV PATH="$install_dir/bin:${PATH}" WORKDIR "$install_dir/bin" ENTRYPOINT ["/sbin/tini", "--"] -CMD ["./cimple-server"] +CMD ["cimple-server"] |