nuclear_bomb / Dockerfile
1tbfree's picture
Create Dockerfile
8db729c verified
raw
history blame
136 Bytes
FROM node:20
WORKDIR /bots/this/
COPY . .
RUN npm install socket.io-client@2
RUN echo node bomb.js > init
RUN chmod +x init
CMD "./init"