From 463324700444c5de1775f94ffd2cbd6d233ef481 Mon Sep 17 00:00:00 2001 From: Joshua Arulsamy Date: Mon, 10 Aug 2020 02:25:33 -0600 Subject: [PATCH] :bug: Cleaner builds, allow some compilation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 65c00a5..827024d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ WORKDIR /src COPY requirements.txt . # Install all dependencies. -RUN pip install --only-binary all --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir -r requirements.txt # Copy PlexBot over to src. COPY PlexBot/ PlexBot