This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bot/Dockerfile
2022-12-16 21:53:38 +01:00

6 lines
85 B
Docker

FROM node:latest
WORKDIR /app
COPY ./ ./
RUN npm install
CMD ["npm", "run", "start"]