use npm instead of yarn

This commit is contained in:
2025-09-30 23:21:06 +02:00
parent 5a1ed0d0ca
commit 4ab4307e6f

View File

@@ -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