mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-07-22 03:00:29 +00:00
fix(ci): add git install to Dockerfile (#2443)
Co-authored-by: Leo Schultheiß <leo.schultheiss@fau.de>
This commit is contained in:
parent
e12ca11100
commit
e54b89f889
1 changed files with 4 additions and 0 deletions
|
|
@ -1,4 +1,8 @@
|
|||
FROM node:22-slim AS builder
|
||||
|
||||
# install git to install plugins
|
||||
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
COPY package.json .
|
||||
COPY package-lock.json* .
|
||||
|
|
|
|||
Loading…
Reference in a new issue