From f7f899790c815a2b94243864e787a8bba1bd251e Mon Sep 17 00:00:00 2001 From: Elnath Date: Tue, 29 Dec 2020 01:39:11 +0100 Subject: [PATCH] FIX: updated dockerfile to copy python packages --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4b2581c..8c5c371 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,10 @@ FROM python:3.7 -COPY VocalMaisBot.py requirements.txt /app/ WORKDIR /app +COPY requirements.txt ./ RUN pip install -r requirements.txt + +COPY ./ChannelsConfigFile/ ./ChannelsConfigFile/ +COPY ./utils/ ./utils/ +COPY VocalMaisBot.py ./ VOLUME ["/app/.token", "/app/channels.json"] ENTRYPOINT /app/VocalMaisBot.py