nv-vlm / Dockerfile
gnilets's picture
Create Dockerfile
77e3d8b verified
raw
history blame contribute delete
200 Bytes
FROM python:3.12
WORKDIR /code
RUN chmod 777 /code
RUN pip install anyio uvicorn fastapi httpx python-multipart pillow
RUN mkdir -p /.cache && chmod 777 /.cache
COPY . .
CMD ["python", "/code/app.py"]