This commit is contained in:
wukko 2023-04-09 08:58:25 +06:00
parent 00a88b9349
commit db461fdd9f

View file

@ -1,7 +1,8 @@
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
COPY .git ./
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN npm install
COPY . .
EXPOSE 9000