mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-19 05:13:41 -05:00
7 lines
No EOL
172 B
Docker
7 lines
No EOL
172 B
Docker
FROM python:3-alpine
|
|
|
|
WORKDIR /catask
|
|
COPY . .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
ENTRYPOINT [ "gunicorn", "-w", "4", "app:app", "--bind", "0.0.0.0:8000" ] |