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