Files
illegitimate-bot/Dockerfile
2023-11-25 17:45:26 +01:00

10 lines
99 B
Docker

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