37171-vm/Dockerfile
2025-12-24 13:45:36 +00:00

13 lines
194 B
Docker

FROM node:20.15.1-alpine AS builder
RUN apk add --no-cache git
WORKDIR /app
COPY frontend/package.json frontend/yarn.lock ./
RUN yarn install --pure-lockfile
COPY frontend .
RUN yarn build