mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
3fe6004600
this also shrinks the image by around 40MB, since the apt/lists layer no longer sticks around
15 lines
317 B
Docker
15 lines
317 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 install && \
|
|
apt purge --autoremove -y python3 build-essential && \
|
|
rm -rf ~/.cache/ /var/lib/apt/lists/*
|
|
|
|
COPY . .
|
|
EXPOSE 9000
|
|
CMD [ "node", "src/cobalt" ]
|