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