mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-16 12:13:42 -05:00
fix dockerfile
This commit is contained in:
parent
bbb7fe6b1e
commit
a1c6116099
1 changed files with 3 additions and 2 deletions
|
@ -2,6 +2,7 @@ FROM python:3-alpine
|
|||
|
||||
WORKDIR /catask
|
||||
COPY . .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN apk add --no-cache postgresql-client && \
|
||||
pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
ENTRYPOINT [ "gunicorn", "-w", "4", "app:app", "--bind", "0.0.0.0:8000" ]
|
||||
ENTRYPOINT [ "gunicorn", "-w", "4", "app:app", "--bind", "0.0.0.0:8000" ]
|
||||
|
|
Loading…
Add table
Reference in a new issue