From 248f06be2a1ce8d766d6f58310cac756b11db93a Mon Sep 17 00:00:00 2001 From: hkc Date: Thu, 22 Sep 2022 19:16:52 +0300 Subject: [PATCH] I should sleep more --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6c19294..a4e68e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM python:3.10-alpine -COPY requirements.txt -RUN pip install -r requirements.txt COPY . /app WORKDIR /app +RUN pip install -r /app/requirements.txt CMD ["python3", "-m", "mastoposter", "/config.ini"]