From 4ab4307e6f4f4695b886440fc3afb13749cac79d Mon Sep 17 00:00:00 2001 From: Leander Furumo Date: Tue, 30 Sep 2025 23:21:06 +0200 Subject: [PATCH] use npm instead of yarn --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8fa3c49..9ebe556 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,13 +3,13 @@ FROM node:18-alpine AS build WORKDIR /app -COPY package.json yarn.lock ./ +COPY package.json package-lock.json ./ -RUN yarn install +RUN npm install COPY . . -RUN yarn build +RUN npm run build # Serve FROM nginx:stable-alpine AS runtime