Files
illegitimate-bot/Dockerfile
2023-04-07 17:07:46 +02:00

11 lines
115 B
Docker

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