clawinsur / dockerfile
designfailure's picture
Create dockerfile
5fe96cc verified
raw
history blame contribute delete
248 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
curl \
git \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
COPY . .
RUN pip install uv
RUN uv pip install --system -e ".[all]"
EXPOSE 7860
CMD ["hermes"]