mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
8 lines
114 B
Docker
8 lines
114 B
Docker
FROM node:lts-bullseye as bot
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm i
|
|
COPY . .
|
|
ARG PORT
|
|
CMD ["npm", "start"]
|