We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 227727c commit c49bcebCopy full SHA for c49bceb
src/client/apps/contwatch-client/Dockerfile
@@ -27,11 +27,11 @@ RUN npm install
27
COPY --from=builder /contwatch-client/out/full/ .
28
29
# Uncomment and use build args to enable remote caching
30
-# ARG TURBO_TEAM
31
-# ENV TURBO_TEAM=$TURBO_TEAM
+ARG TURBO_TEAM
+ENV TURBO_TEAM=$TURBO_TEAM
32
33
-# ARG TURBO_TOKEN
34
-# ENV TURBO_TOKEN=$TURBO_TOKEN
+ARG TURBO_TOKEN
+ENV TURBO_TOKEN=$TURBO_TOKEN
35
36
RUN npx turbo build --filter=contwatch-client...
37
src/docker-compose.yml
@@ -1,5 +1,8 @@
1
services:
2
client:
3
+ environment:
4
+ TURBO_TEAM: "$TURBO_TEAM"
5
+ TURBO_TOKEN: "$TURBO_TOKEN"
6
build:
7
context: client
8
dockerfile: ./apps/contwatch-client/Dockerfile
0 commit comments