Skip to content

Commit 2bd159c

Browse files
authored
Merge pull request #2069 from cprussin/pass-CI-to-docker-build
fix(docker): ensure CI gets passed to build commands
2 parents db4a5d2 + ee2314d commit 2bd159c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile.node

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ USER pyth
1616

1717
FROM builder-base AS builder
1818
ARG package
19-
RUN pnpm turbo build --filter $package
19+
RUN CI=true pnpm turbo build --filter $package
2020
RUN pnpm deploy --filter $package --prod /srv/$package
2121

2222

governance/xc_admin/packages/xc_admin_frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG NEXT_PUBLIC_RPC_POOL_TOKEN
44
ENV NEXT_TELEMETRY_DISABLED 1
55
ENV BUILD_STANDALONE true
66
ENV NEXT_PUBLIC_RPC_POOL_TOKEN $NEXT_PUBLIC_RPC_POOL_TOKEN
7-
RUN pnpm turbo build --filter @pythnetwork/xc-admin-frontend
7+
RUN CI=true pnpm turbo build --filter @pythnetwork/xc-admin-frontend
88

99

1010
# See https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile

0 commit comments

Comments
 (0)