vllm-test-ui / Dockerfile
harsh-manvar's picture
Upload 3 files
0efa81e verified
raw
history blame
314 Bytes
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Copy the application files
COPY app.py /app
COPY requirements.txt /app
# Install required Python libraries
RUN pip install --no-cache-dir -r requirements.txt
# Expose the default Gradio port
EXPOSE 7860
# Run the application
CMD ["python", "app.py"]