Files
hydra/Dockerfile
Chubby Granny Chaser 53d81018e9 feat: adding uuid library
2025-10-13 18:05:48 +01:00

16 lines
345 B
Docker

FROM node:22-alpine AS builder
# Install git (required for git dependencies)
RUN apk add --no-cache git
WORKDIR /app
COPY package.json yarn.lock ./
# Install dependencies but skip postinstall scripts (electron-builder deps not needed for web build)
RUN yarn install --frozen-lockfile --ignore-scripts
COPY . .
RUN yarn electron-vite build