mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-10 18:29: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
|
FROM node:18-bullseye-slim
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY package*.json ./
|
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
|
RUN npm install
|
||||||
COPY . .
|
COPY . .
|
||||||
EXPOSE 9000
|
EXPOSE 9000
|
||||||
|
|
Loading…
Reference in a new issue