From 00a88b934936d61336357d31208c5d82191df946 Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 9 Apr 2023 08:53:53 +0600 Subject: [PATCH] added git clone to dockerfile to (hopefully) fix the issue with git --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index deb10591..7fb26033 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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