fix: build using npm, not pnpm
Some checks failed
Build and push Docker image / build-and-push (push) Has been cancelled

This commit is contained in:
Jo 2023-11-26 01:21:01 +01:00
parent aa600a2291
commit 6380cd16c9

View file

@ -8,8 +8,7 @@ WORKDIR /usr/src/app
# Copy package.json and package-lock.json to the working directory # Copy package.json and package-lock.json to the working directory
COPY package*.json ./ COPY package*.json ./
RUN npm install pnpm RUN npm install
RUN pnpm install
COPY . . COPY . .