mirror of
https://git.everypizza.im/n/utils.git
synced 2025-04-29 11:59:26 -04:00
8 lines
178 B
Docker
8 lines
178 B
Docker
FROM python:3-alpine
|
|
|
|
WORKDIR /utils
|
|
COPY . .
|
|
RUN pip install --no-cache-dir -r requirements-prod.txt
|
|
|
|
ENTRYPOINT [ "gunicorn", "-w", "4", "app.app", "--bind", "0.0.0.0:8000" ]
|
|
|