catask/Dockerfile
2025-03-19 13:37:58 +03:00

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" ]