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-06-16 21:43:18 +02:00

7 lines
139 B
Docker

# syntax=docker/dockerfile:1
FROM node:16.10.0
WORKDIR /app
COPY ./ ./
RUN sudo apt install python
RUN npm install
CMD ["node", "index.js"]