From 22e03c1aef93954785769c8e84c3ea26f78ed28b Mon Sep 17 00:00:00 2001 From: wasabi Date: Thu, 21 Oct 2021 10:25:06 -0700 Subject: [PATCH] forgot to add nextcord --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c65d214..387a099 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ COPY app/ /app RUN python3 -m venv /app/ WORKDIR /app/ -RUN pip3 install --no-cache-dir --upgrade pip && pip3 install --no-cache-dir discord requests +RUN pip3 install --no-cache-dir --upgrade pip && pip3 install --no-cache-dir discord nextcord requests RUN pwd && wget https://github.com/weddige/pyaiml3/archive/refs/heads/master.zip -O pythonaiml.zip \ && unzip pythonaiml.zip && cd pyaiml3-master && python3 setup.py install \ && cd .. && rm pythonaiml.zip && rm -r pyaiml3-master && cd /