From 833cfb1278cfef68d614606bf2111a58fba13077 Mon Sep 17 00:00:00 2001 From: Vivek Santayana Date: Wed, 4 Aug 2021 14:43:58 +0100 Subject: [PATCH] Trying to fix bizarre Requirements bug --- app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Dockerfile b/app/Dockerfile index 0bcc771..98ed818 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.9.6-buster WORKDIR /usr/src/app RUN pip install --upgrade pip -RUN pip install -r requirements.txt +RUN pip install -r ./requirements.txt CMD python3 -u ./bot.py \ No newline at end of file