mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 04:39:58 +00:00
16 lines
452 B
Docker
16 lines
452 B
Docker
FROM node:18-bullseye-slim
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y git python3 build-essential && \
|
|
npm ci && \
|
|
npm cache clean --force && \
|
|
apt purge --autoremove -y python3 build-essential && \
|
|
rm -rf ~/.cache/ /var/lib/apt/lists/*
|
|
|
|
COPY . .
|
|
EXPOSE 9000
|
|
CMD [ "node", "src/cobalt" ]
|