Spaces:
Running
Running
File size: 758 Bytes
b9a47ba 70ec7be fcb36ba 3d69eda 7c67037 b9a47ba fcb36ba d1d6d0e b9a47ba 3d69eda b9a47ba 3e14e93 b9a47ba fcb36ba 3e60f77 7c67037 5bd1a50 3d69eda |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
FROM ghcr.io/astral-sh/uv:debian-slim
# Enable bytecode compilation, Copy from the cache instead of linking since it's a mounted volume
ENV UV_COMPILE_BYTECODE=1 \
UV_LINK_MODE=copy \
UV_NO_CACHE=1 \
UV_SYSTEM_PYTHON=1 \
GRADIO_SERVER_PORT=8080
WORKDIR /app
# skipcq: DOK-DL3008
RUN apt-get update && \
apt-get install -qq -y --no-install-recommends espeak-ng && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN --mount=type=bind,source=pyproject.toml,target=pyproject.toml \
--mount=type=bind,source=.python-version,target=.python-version \
uv python install $(cat .python-version) \
uv pip install -r pyproject.toml
COPY . /app
EXPOSE ${GRADIO_SERVER_PORT}
ENTRYPOINT [ ]
CMD ["python", "src/vocalizr"]
|