This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
frostbot/Dockerfile
2025-05-24 16:19:11 -07:00

23 lines
309 B
Docker

FROM node:20
WORKDIR /app
RUN apt-get update && apt-get install -y \
python3 \
make \
g++ \
libcairo2-dev \
libpango1.0-dev \
libjpeg-dev \
libgif-dev \
librsvg2-dev
COPY package*.json ./
RUN npm install
COPY . .
RUN chown -R node:node /app/src/data
USER node
CMD ["npm", "run", "start"]