1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-23 05:55:13 -05:00

Fix copy commands in Dockerfiles

This commit is contained in:
Vince Grassia 2023-11-15 15:44:20 -05:00
parent d21717e1d5
commit edad0e1edf
No known key found for this signature in database
GPG Key ID: 9AD7505E8448CC08
12 changed files with 12 additions and 12 deletions

View File

@ -61,7 +61,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /app WORKDIR /app
COPY --from=build /app/Scim ./ COPY --from=build /app/Scim ./
COPY entrypoint.sh / COPY bitwarden_license/src/Scim/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1

View File

@ -61,7 +61,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /app WORKDIR /app
COPY --from=build /app/Sso ./ COPY --from=build /app/Sso ./
COPY entrypoint.sh / COPY bitwarden_license/src/Sso/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1

View File

@ -73,7 +73,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /app WORKDIR /app
COPY --from=build /app/Admin ./ COPY --from=build /app/Admin ./
COPY entrypoint.sh / COPY src/Admin/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000 || exit 1 HEALTHCHECK CMD curl -f http://localhost:5000 || exit 1

View File

@ -65,7 +65,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /app WORKDIR /app
COPY --from=build /app/Api ./ COPY --from=build /app/Api ./
COPY entrypoint.sh / COPY src/Api/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1

View File

@ -61,7 +61,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /app WORKDIR /app
COPY --from=build /app/Billing ./ COPY --from=build /app/Billing ./
COPY entrypoint.sh / COPY src/Billing/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1

View File

@ -61,7 +61,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /app WORKDIR /app
COPY --from=build /app/Admin ./ COPY --from=build /app/Admin ./
COPY entrypoint.sh / COPY src/Events/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1

View File

@ -61,7 +61,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /app WORKDIR /app
COPY --from=build /app/EventsProcessor ./ COPY --from=build /app/EventsProcessor ./
COPY entrypoint.sh / COPY src/EventsProcessor/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1

View File

@ -61,7 +61,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /app WORKDIR /app
COPY --from=build /app/Icons ./ COPY --from=build /app/Icons ./
COPY entrypoint.sh / COPY src/Icons/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000/google.com/icon.png || exit 1 HEALTHCHECK CMD curl -f http://localhost:5000/google.com/icon.png || exit 1

View File

@ -73,7 +73,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /app WORKDIR /app
COPY --from=build /app/Identity ./ COPY --from=build /app/Identity ./
COPY entrypoint.sh / COPY src/Identity/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000/.well-known/openid-configuration || exit 1 HEALTHCHECK CMD curl -f http://localhost:5000/.well-known/openid-configuration || exit 1

View File

@ -61,7 +61,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /app WORKDIR /app
COPY --from=build /app/Notifications ./ COPY --from=build /app/Notifications ./
COPY entrypoint.sh / COPY src/Notifications/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1

View File

@ -57,7 +57,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /bitwarden_server WORKDIR /bitwarden_server
COPY --from=build /app/Server ./ COPY --from=build /app/Server ./
COPY entrypoint.sh / COPY util/Attachments/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1 HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1

View File

@ -55,7 +55,7 @@ RUN apt-get update \
# Copy app from the build stage # Copy app from the build stage
WORKDIR /app WORKDIR /app
COPY --from=build /app/Setup ./ COPY --from=build /app/Setup ./
COPY entrypoint.sh / COPY util/Setup/entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"] ENTRYPOINT ["/entrypoint.sh"]