mirror of
https://github.com/bitwarden/server.git
synced 2025-04-11 08:08:14 -05:00
Fix copy commands in Dockerfiles
This commit is contained in:
parent
d21717e1d5
commit
edad0e1edf
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"]
|
||||
|
Loading…
x
Reference in New Issue
Block a user