Files
illegitimate-bot/Dockerfile
2023-04-06 21:50:17 +02:00

9 lines
93 B
Docker

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