feat: add root Dockerfile (fixes #852)
This commit is contained in:
parent
c7ddb2d7d1
commit
6924fd9b71
|
|
@ -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"]
|
||||||
Loading…
Reference in New Issue