diff --git a/Dockerfile b/Dockerfile index 5a82830b2..e7037042d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,5 +8,6 @@ RUN cd / RUN pip3 install -U pip && pip3 install -U -r requirements.txt RUN mkdir /LazyPrincess WORKDIR /LazyPrincess -COPY start.sh /start.sh -CMD ["/bin/bash", "/start.sh"] + +COPY . . +CMD python3 bot.py diff --git a/Procfile b/Procfile index ab94349c4..d80f8e789 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: python3 bot.py \ No newline at end of file +worker: python3 bot.py diff --git a/app.json b/app.json index 93954b9c0..463fd6931 100644 --- a/app.json +++ b/app.json @@ -75,7 +75,7 @@ "formation": { "worker": { "quantity": 1, - "size": "free" + "size": "eco" } } }