10 lines
191 B
Docker
10 lines
191 B
Docker
FROM node:20-slim
|
|
|
|
COPY package*.json /tmp/
|
|
RUN cd /tmp && npm install
|
|
RUN mkdir -p /opt/app && cp -a /tmp/node_modules /opt/app/
|
|
|
|
WORKDIR /opt/app
|
|
COPY . /opt/app
|
|
|
|
CMD ["npm", "run", "bot"]
|