mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-20 13:53:42 -05:00
fix example config not copying to production config in dockerfile
This commit is contained in:
parent
6f430a885b
commit
e0d9d1dba0
1 changed files with 1 additions and 1 deletions
|
@ -13,6 +13,6 @@ DB_PASS = catask\n\
|
||||||
DB_PORT = 3306\n\
|
DB_PORT = 3306\n\
|
||||||
ADMIN_PASSWORD = $ADMIN_PASSWORD\n\
|
ADMIN_PASSWORD = $ADMIN_PASSWORD\n\
|
||||||
APP_SECRET = $(python3 -c "import secrets; print(secrets.token_hex())")' > .env
|
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" ]
|
ENTRYPOINT [ "gunicorn", "-w", "4", "app:app" ]
|
Loading…
Add table
Reference in a new issue