commit 204993568a11c1f303b2dc60ff8471f96a23a26c
parent 70be2d93ce015940f07fdc4c05a7c228042b141f
Author: Gernot Nusshall <gernot.nusshall@rise-world.com>
Date: Wed, 13 Nov 2019 21:45:26 +0100
cleaner startup exec in order to build the image and run the container with podman/libpod
Diffstat:
8 files changed, 16 insertions(+), 14 deletions(-)
diff --git a/docker/aarch64/mysql/Dockerfile b/docker/aarch64/mysql/Dockerfile
@@ -103,4 +103,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/aarch64/sqlite/Dockerfile b/docker/aarch64/sqlite/Dockerfile
@@ -102,4 +102,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/mysql/Dockerfile b/docker/amd64/mysql/Dockerfile
@@ -100,4 +100,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 b/docker/amd64/postgresql/Dockerfile
@@ -101,4 +101,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/armv6/mysql/Dockerfile b/docker/armv6/mysql/Dockerfile
@@ -103,4 +103,5 @@ COPY docker/healthcheck.sh ./healthcheck.sh
HEALTHCHECK --interval=30s --timeout=3s CMD sh healthcheck.sh || exit 1
# Configures the startup!
-CMD ["./bitwarden_rs"]
+WORKDIR /
+CMD ["/bitwarden_rs"]
diff --git a/docker/armv6/sqlite/Dockerfile b/docker/armv6/sqlite/Dockerfile
@@ -102,4 +102,5 @@ COPY docker/healthcheck.sh ./healthcheck.sh
HEALTHCHECK --interval=30s --timeout=3s CMD sh healthcheck.sh || exit 1
# Configures the startup!
-CMD ["./bitwarden_rs"]
+WORKDIR /
+CMD ["/bitwarden_rs"]
diff --git a/docker/armv7/mysql/Dockerfile b/docker/armv7/mysql/Dockerfile
@@ -104,4 +104,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/armv7/sqlite/Dockerfile b/docker/armv7/sqlite/Dockerfile
@@ -102,4 +102,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"]