aria_vllm / Dockerfile
gnilets's picture
Update Dockerfile
0d3353b verified
raw
history blame contribute delete
305 Bytes
FROM mcr.microsoft.com/playwright/python:v1.47.0-noble
WORKDIR /code
RUN chmod 777 /code
RUN pip install patchright apscheduler fastapi httpx python-multipart uvicorn prlps_fakeua
RUN mkdir -p /.cache && chmod 777 /.cache
RUN patchright install --with-deps chromium
COPY . .
CMD ["python", "/code/app.py"]