From dea51ca4d50fd8c5595f40729fe65d37d89d0e50 Mon Sep 17 00:00:00 2001 From: GoldenJaden Date: Fri, 23 Feb 2024 23:10:38 +0300 Subject: [PATCH] Modify Dockerfile to support codex-ui workspace --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b3fba550..16494da6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ RUN apk add --no-cache libc6-compat WORKDIR /app COPY package.json yarn.lock .yarnrc.yml ./ COPY .yarn/releases ./.yarn/releases +COPY ./codex-ui/package.json codex-ui/ RUN yarn install FROM node:20-alpine AS builder