Files
illegitimate-bot/Dockerfile
2023-08-30 11:15:52 +02:00

10 lines
94 B
Docker

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