From 0cd2199d0fb4e4e95d43364fc2b94823596124d6 Mon Sep 17 00:00:00 2001 From: timochan Date: Wed, 10 Jul 2024 21:02:23 +0800 Subject: [PATCH] chore: update --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ccbced..b778bbe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,9 @@ FROM node:20-alpine AS builder RUN apk add --no-cache libc6-compat git RUN npm i -g pnpm WORKDIR /app -COPY . . - -RUN pnpm install -RUN npm run build +RUN git clone https://github.com/ttimochan/kami.git && \ + pnpm install && \ + npm run build # If using npm comment out above and use below instead # RUN npm run build