vllm-test-ui / Dockerfile
harsh-manvar's picture
Update Dockerfile
f418898 verified
raw
history blame
378 Bytes
FROM harshmanvar/vllm-cpu-only:v1
WORKDIR /workspace
ENV XDG_CACHE_HOME=/app/.cache
ENV MPLCONFIGDIR=/app/.config/matplotlib
RUN mkdir -p /app/.config/matplotlib /app/.cache && \
chmod -R 777 /app/.config /app/.cache
RUN mkdir -p $MPLCONFIGDIR
COPY app.py /workspace
COPY requirements.txt /workspace
RUN pip3 install -r requirements.txt
EXPOSE 7860
CMD ["python3", "app.py"]