12 lines
166 B
Docker
12 lines
166 B
Docker
FROM node:latest
|
|
|
|
# Working dir
|
|
RUN mkdir -p /emot/app
|
|
WORKDIR /emot/app
|
|
|
|
# Install bot
|
|
COPY ./bot /emot/app
|
|
RUN npm install
|
|
|
|
# Start the bot
|
|
CMD ["node", "index.js"] |