tmp-faceberg-oauth / Dockerfile
lhoestq's picture
lhoestq HF Staff
Sync catalog metadata
1e83ec3 verified
raw
history blame contribute delete
298 Bytes
FROM python:3.13-slim
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
RUN apt update
RUN apt install -y git
RUN uv pip install --system --no-cache git+https://github.com/kszucs/faceberg.git@oauth
EXPOSE 7860
CMD sh -c 'faceberg hf://spaces/${SPACE_ID} serve --host 0.0.0.0 --port 7860'