This commit is contained in:
Eugene Pankov 2021-07-26 20:17:13 +02:00
parent 103dcea95b
commit d7f533d544
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4
2 changed files with 2 additions and 1 deletions

View File

@ -13,4 +13,4 @@ WORKDIR /app
COPY --from=0 /usr /usr
COPY start.sh manage.py gunicorn.conf.py ./
COPY tabby tabby
ENTRYPOINT ./start.sh
ENTRYPOINT ["/app/start.sh"]

View File

@ -1,3 +1,4 @@
#!/bin/sh
cd /app
./manage.py migrate
gunicorn