insomniafi-insid-bot/Dockerfile

17 lines
287 B
Docker
Raw Normal View History

2024-10-31 23:27:30 +00:00
FROM docker.io/node:22-alpine
LABEL org.opencontainers.image.source https://github.com/insomniafi/insid-bot
2024-10-31 23:27:30 +00:00
#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" ]