Files
illegitimate-bot/Dockerfile
2023-11-27 13:17:11 +01:00

10 lines
103 B
Docker

FROM node:20.9.0-alpine3.18
COPY . /app
WORKDIR /app
RUN yarn install
CMD ["node", "src/index.js"]