mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-05 07:49:58 +00:00
added git clone to dockerfile to (hopefully) fix the issue with git
This commit is contained in:
parent
8512a47181
commit
00a88b9349
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue