feat: add root Dockerfile (fixes #852)

This commit is contained in:
aayushprsingh 2026-05-30 03:05:14 +05:30
parent c7ddb2d7d1
commit 6924fd9b71
1 changed files with 8 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "-m", "ruview"]