diff --git a/bitwarden_license/src/Scim/Dockerfile b/bitwarden_license/src/Scim/Dockerfile index d3d8cf53e7..d3ca2f2c26 100644 --- a/bitwarden_license/src/Scim/Dockerfile +++ b/bitwarden_license/src/Scim/Dockerfile @@ -61,7 +61,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /app COPY --from=build /app/Scim ./ -COPY entrypoint.sh / +COPY bitwarden_license/src/Scim/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 diff --git a/bitwarden_license/src/Sso/Dockerfile b/bitwarden_license/src/Sso/Dockerfile index a505f045cb..d79c7abe15 100644 --- a/bitwarden_license/src/Sso/Dockerfile +++ b/bitwarden_license/src/Sso/Dockerfile @@ -61,7 +61,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /app COPY --from=build /app/Sso ./ -COPY entrypoint.sh / +COPY bitwarden_license/src/Sso/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 diff --git a/src/Admin/Dockerfile b/src/Admin/Dockerfile index e9732cdd9c..a5015dc8b3 100644 --- a/src/Admin/Dockerfile +++ b/src/Admin/Dockerfile @@ -73,7 +73,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /app COPY --from=build /app/Admin ./ -COPY entrypoint.sh / +COPY src/Admin/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000 || exit 1 diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index c93a24a0af..ab5f9ccb31 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -65,7 +65,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /app COPY --from=build /app/Api ./ -COPY entrypoint.sh / +COPY src/Api/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 diff --git a/src/Billing/Dockerfile b/src/Billing/Dockerfile index c94514d89b..8c2fbbabaf 100644 --- a/src/Billing/Dockerfile +++ b/src/Billing/Dockerfile @@ -61,7 +61,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /app COPY --from=build /app/Billing ./ -COPY entrypoint.sh / +COPY src/Billing/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 diff --git a/src/Events/Dockerfile b/src/Events/Dockerfile index d6f81f759a..18ba2a334d 100644 --- a/src/Events/Dockerfile +++ b/src/Events/Dockerfile @@ -61,7 +61,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /app COPY --from=build /app/Admin ./ -COPY entrypoint.sh / +COPY src/Events/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 diff --git a/src/EventsProcessor/Dockerfile b/src/EventsProcessor/Dockerfile index 292109b87b..b6a02073b4 100644 --- a/src/EventsProcessor/Dockerfile +++ b/src/EventsProcessor/Dockerfile @@ -61,7 +61,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /app COPY --from=build /app/EventsProcessor ./ -COPY entrypoint.sh / +COPY src/EventsProcessor/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 diff --git a/src/Icons/Dockerfile b/src/Icons/Dockerfile index aaca787180..ddc19ff14c 100644 --- a/src/Icons/Dockerfile +++ b/src/Icons/Dockerfile @@ -61,7 +61,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /app COPY --from=build /app/Icons ./ -COPY entrypoint.sh / +COPY src/Icons/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000/google.com/icon.png || exit 1 diff --git a/src/Identity/Dockerfile b/src/Identity/Dockerfile index 27adc2cdf2..99d9910e4d 100644 --- a/src/Identity/Dockerfile +++ b/src/Identity/Dockerfile @@ -73,7 +73,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /app COPY --from=build /app/Identity ./ -COPY entrypoint.sh / +COPY src/Identity/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000/.well-known/openid-configuration || exit 1 diff --git a/src/Notifications/Dockerfile b/src/Notifications/Dockerfile index bd8fcbd840..136fc9be36 100644 --- a/src/Notifications/Dockerfile +++ b/src/Notifications/Dockerfile @@ -61,7 +61,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /app COPY --from=build /app/Notifications ./ -COPY entrypoint.sh / +COPY src/Notifications/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 diff --git a/util/Attachments/Dockerfile b/util/Attachments/Dockerfile index a67028a08c..0f8c19013a 100644 --- a/util/Attachments/Dockerfile +++ b/util/Attachments/Dockerfile @@ -57,7 +57,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /bitwarden_server COPY --from=build /app/Server ./ -COPY entrypoint.sh / +COPY util/Attachments/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 diff --git a/util/Setup/Dockerfile b/util/Setup/Dockerfile index e385706208..61db604339 100644 --- a/util/Setup/Dockerfile +++ b/util/Setup/Dockerfile @@ -55,7 +55,7 @@ RUN apt-get update \ # Copy app from the build stage WORKDIR /app COPY --from=build /app/Setup ./ -COPY entrypoint.sh / +COPY util/Setup/entrypoint.sh / RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]