mirror of
https://github.com/kennethreitz/elonpoetrytracker.git
synced 2026-06-05 14:50:19 +00:00
7 lines
172 B
Docker
7 lines
172 B
Docker
FROM python:3.11-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
COPY . .
|
|
CMD ["gunicorn", "app:app", "-b", "0.0.0.0:8080", "--timeout", "0"]
|