mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-05 07:49:58 +00:00
14 lines
323 B
Docker
14 lines
323 B
Docker
FROM node:18-bullseye-slim
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
ARG GIT_COMMIT
|
|
RUN apt-get update
|
|
RUN apt-get install -y git
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
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/cobalt" ]
|
|
|