mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-05 16:00:05 +00:00
10 lines
250 B
Docker
10 lines
250 B
Docker
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/* && git clone https://github.com/wukko/cobalt
|
|
RUN npm install
|
|
COPY . .
|
|
EXPOSE 9000
|
|
CMD [ "node", "src/cobalt" ]
|
|
|