File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -43,9 +43,10 @@ COPY --from=builder /app/pruned .
4343
4444COPY --from=builder /usr/local/bin/dbmate /usr/local/bin/dbmate
4545
46- COPY ./controlplane/src/bin /docker-entrypoint.sh /usr/local/bin/
46+ COPY ./controlplane/docker /docker-entrypoint.sh /usr/local/bin/
4747RUN chmod +x /usr/local/bin/docker-entrypoint.sh
48- RUN chmod +x /app/src/bin/patch-sentry.sh
48+ COPY ./controlplane/docker/patch-sentry.sh /usr/local/bin/
49+ RUN chmod +x /usr/local/bin/patch-sentry.sh
4950ENV SENTRY_ENABLED=false
5051ENTRYPOINT ["docker-entrypoint.sh" ]
5152
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ echo "[!] Starting container with SENTRY_ENABLED=${SENTRY_ENABLED:-false}"
77# Conditionally apply the patch
88if [ " ${SENTRY_ENABLED} " = " true" ]; then
99 echo " [!] Applying Sentry patch."
10- /app/src/bin/ patch-sentry.sh /app/dist/index.js
10+ patch-sentry.sh /app/dist/index.js
1111else
1212 echo " [X] Skipping Sentry patch."
1313fi
File renamed without changes.
You can’t perform that action at this time.
0 commit comments