insomniafi-insid-bot/Dockerfile

17 lines
287 B
Docker

FROM docker.io/node:22-alpine
LABEL org.opencontainers.image.source https://github.com/insomniafi/insid-bot
#Dependencies
RUN apk add --virtual .build-deps python3 make g++ gcc git
WORKDIR /usr/src/app
COPY / /usr/src/app/
RUN npm install
RUN npm run build
CMD [ "npm", "start" ]