mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
8 lines
178 B
Docker
8 lines
178 B
Docker
FROM python:3.12-slim-bookworm
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
|
COPY . /viu
|
|
ENV PATH=/root/.local/bin:$PATH
|
|
WORKDIR /viu
|
|
RUN uv tool install .
|
|
CMD ["bash"]
|