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