From e0d9d1dba030f946a9ac03d85b44d9f309728b24 Mon Sep 17 00:00:00 2001 From: max Date: Tue, 10 Dec 2024 13:31:05 +0000 Subject: [PATCH] fix example config not copying to production config in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 01524f1..1990f1d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,6 @@ DB_PASS = catask\n\ DB_PORT = 3306\n\ ADMIN_PASSWORD = $ADMIN_PASSWORD\n\ APP_SECRET = $(python3 -c "import secrets; print(secrets.token_hex())")' > .env -COPY config.example.json config.json +COPY ./config.example.json ./config.json ENTRYPOINT [ "gunicorn", "-w", "4", "app:app" ] \ No newline at end of file