mirror of
https://github.com/insomniafi/insomniaid-bot.git
synced 2025-06-15 19:56:01 +00:00
Initial Commit
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@ -0,0 +1,14 @@
|
||||
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" ]
|
Reference in New Issue
Block a user