Files
femboybot/Dockerfile
2023-01-28 13:23:46 +01:00

17 lines
201 B
Docker

FROM node:lts
WORKDIR /app
RUN apt update && apt install chromium -y
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
COPY package.json ./
RUN npm i
COPY . .
RUN npm run build
CMD node ./dist/index.js