Skip to content

Commit

Permalink
fix: docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
didinele committed Sep 1, 2023
1 parent cf7346d commit 0baf20f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,25 @@ COPY .yarn ./.yarn

COPY packages/core/package.json ./packages/core/package.json

COPY services/discord-proxy/package.json ./services/discord-proxy/package.json
COPY services/gateway/package.json ./services/gateway/package.json
COPY services/interactions/package.json ./services/interactions/package.json
COPY services/logging/package.json ./services/logging/package.json
COPY services/task-runner/package.json ./services/task-runner/package.json

RUN yarn --immutable

COPY prisma ./prisma
RUN yarn prisma generate

COPY packages/core ./packages/core

COPY services/discord-proxy ./services/discord-proxy
COPY services/gateway ./services/gateway
COPY services/interactions ./services/interactions
COPY services/logging ./services/logging
COPY services/task-runner ./services/task-runner

ARG TURBO_TEAM
ENV TURBO_TEAM=$TURBO_TEAM

Expand Down

0 comments on commit 0baf20f

Please sign in to comment.