commit 748c82520213dacb957e9994942f415970e19d13 parent 204993568a11c1f303b2dc60ff8471f96a23a26c Author: Gernot Nusshall <gernot.nusshall@rise-world.com> Date: Wed, 13 Nov 2019 22:11:09 +0100 cleaner startup exec in order to build the image and run the container with podman/libpod Diffstat:
M | docker/amd64/mysql/Dockerfile.alpine | | | 4 | ++-- |
M | docker/amd64/postgresql/Dockerfile.alpine | | | 4 | ++-- |
M | docker/amd64/sqlite/Dockerfile.alpine | | | 3 | ++- |
3 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/docker/amd64/mysql/Dockerfile.alpine b/docker/amd64/mysql/Dockerfile.alpine @@ -82,4 +82,5 @@ COPY docker/healthcheck.sh ./healthcheck.sh HEALTHCHECK --interval=30s --timeout=3s CMD sh healthcheck.sh || exit 1 # Configures the startup! -CMD ["./bitwarden_rs"] -\ No newline at end of file +WORKDIR / +CMD ["/bitwarden_rs"] diff --git a/docker/amd64/postgresql/Dockerfile.alpine b/docker/amd64/postgresql/Dockerfile.alpine @@ -83,4 +83,5 @@ COPY docker/healthcheck.sh ./healthcheck.sh HEALTHCHECK --interval=30s --timeout=3s CMD sh healthcheck.sh || exit 1 # Configures the startup! -CMD ["./bitwarden_rs"] -\ No newline at end of file +WORKDIR / +CMD ["/bitwarden_rs"] diff --git a/docker/amd64/sqlite/Dockerfile.alpine b/docker/amd64/sqlite/Dockerfile.alpine @@ -77,4 +77,5 @@ HEALTHCHECK --interval=30s --timeout=3s CMD sh healthcheck.sh || exit 1 # Configures the startup! -CMD ["./bitwarden_rs"] +WORKDIR / +CMD ["/bitwarden_rs"]