mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-19 20:17:46 -05:00
- reverted back to Flask development server for development - improved / suppressed git logging - fixed cloning for private repos by including PAT in clone job - add 'private repo' badge that replaces repository stats for private repos
7 lines
183 B
Docker
7 lines
183 B
Docker
FROM python:3.9
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY . .
|
|
# Use gunicorn with 10-minute timeout
|
|
CMD ["python", "-m", "app.main"] |