mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-19 05:13:41 -05:00
8 lines
219 B
Docker
8 lines
219 B
Docker
FROM python:3-alpine
|
|
|
|
WORKDIR /catask
|
|
COPY . .
|
|
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" ]
|