added git clone to dockerfile to (hopefully) fix the issue with git

This commit is contained in:
wukko 2023-04-09 08:53:53 +06:00
parent 8512a47181
commit 00a88b9349

View file

@ -1,7 +1,7 @@
FROM node:18-bullseye-slim
WORKDIR /app
COPY package*.json ./
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* && git clone https://github.com/wukko/cobalt
RUN npm install
COPY . .
EXPOSE 9000