mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-05 16:00:05 +00:00
16 lines
308 B
Text
16 lines
308 B
Text
|
FROM node:18-bullseye-slim
|
||
|
WORKDIR /app
|
||
|
|
||
|
RUN apt-get update
|
||
|
RUN apt-get install -y git
|
||
|
RUN rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
COPY package*.json ./
|
||
|
RUN npm install
|
||
|
|
||
|
RUN git clone -n https://github.com/wukko/cobalt.git --depth 1 && mv cobalt/.git ./ && rm -rf cobalt
|
||
|
|
||
|
COPY . .
|
||
|
EXPOSE 9000
|
||
|
CMD [ "node", "src/api" ]
|