From a8b045e0e4c162a8768a2c972add40c4faf27e4f Mon Sep 17 00:00:00 2001 From: Gabriele Tramonte Date: Tue, 30 Jul 2024 12:10:59 +0200 Subject: [PATCH] starting service first --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index cf1ccc2..e3b399d 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -18,4 +18,4 @@ RUN service cron start #CMD ["uvicorn", "app.main:app", "--proxy-headers", "--host", "0.0.0.0", "--port", "80"] -ENTRYPOINT uvicorn app.main:app --proxy-headers --host 0.0.0.0 --port 80 && service cron start \ No newline at end of file +ENTRYPOINT service cron start && uvicorn app.main:app --proxy-headers --host 0.0.0.0 --port 80 \ No newline at end of file