mirror of
https://github.com/insomniafi/insomniaid-bot.git
synced 2024-11-21 15:00:19 +00:00
15 lines
208 B
Docker
15 lines
208 B
Docker
FROM docker.io/node:22-alpine
|
|
|
|
#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" ]
|