cobalt/Dockerfile

14 lines
330 B
Docker
Raw Normal View History

2023-02-20 19:12:26 +00:00
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/*
2023-02-20 19:12:26 +00:00
RUN npm install
2023-04-09 04:25:59 +01:00
RUN git clone -n https://github.com/wukko/cobalt.git --depth 1 && cd cobalt && git checkout ${GIT_COMMIT} .
2023-02-20 19:12:26 +00:00
COPY . .
EXPOSE 9000
CMD [ "node", "src/cobalt" ]