ci: updated workflow

This commit is contained in:
Marvin Zhang
2024-10-24 14:42:33 +08:00
parent 76c65de71d
commit b371789a75

View File

@@ -8,10 +8,10 @@ WORKDIR /app
RUN npm install -g pnpm
# Copy package.json and pnpm-lock.yaml
COPY package.json pnpm-lock.yaml ./
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
# Install project dependencies
RUN pnpm recursive install
RUN pnpm install
# Copy the rest of the application code
COPY . .