Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker/dockerfiles/dockerfile_web
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ COPY bifrost/package.json ./bifrost/

ENV NODE_OPTIONS="--dns-result-order=ipv4first"

RUN yarn install --frozen-lockfile --network-timeout 300000

COPY packages/ ./packages/
COPY web/ ./web/

RUN yarn install --frozen-lockfile --network-timeout 300000

RUN cd web && yarn build

FROM node:20-bookworm-slim
Expand All @@ -35,4 +35,4 @@ COPY --from=builder /app/node_modules/ ./node_modules/

RUN chmod -R o+w /app/web/public

CMD ["yarn", "--cwd", "web", "start"]
CMD ["yarn", "--cwd", "web", "start"]