Hyperspeed-demo / Dockerfile
Keeby-smilyai's picture
Update Dockerfile
a0209f3 verified
raw
history blame contribute delete
391 Bytes
FROM python:3.13.5-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
build-essential \
curl \
git \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt ./
RUN pip3 install -r requirements.txt
RUN pip3 install git+https://github.com/Smilyai-labs/Hyperspeed.git
# Copy app
COPY app.py .
# Expose Gradio port
EXPOSE 7860
# Run app
CMD ["python", "app.py"]