Include make to dependencies
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m17s

This commit is contained in:
2026-03-10 12:13:42 +00:00
parent a8d1b879be
commit c7dbf5b778
2 changed files with 2 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
# Stage 1: Build Vue app
FROM node:22-slim AS build
RUN apt-get update && apt-get install -y make git && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY vue/package.json vue/package-lock.json ./
RUN npm ci