From d8029623c14cb837b59781cb358b2da9eb804ce2 Mon Sep 17 00:00:00 2001 From: def Date: Tue, 10 Jan 2023 16:45:24 +0400 Subject: [PATCH] fix: add config to docker --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5914a9f..9f29f75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,4 +6,5 @@ RUN apt-get install --yes python3 python3-pip COPY requirements.txt /app/ RUN pip3 install -r requirements.txt COPY mirrortea/* /app/mirrortea/ +COPY config.yaml /app/ ENTRYPOINT ["/usr/bin/python3", "/app/mirrortea"]