Files
FastAnime/bundle/Dockerfile
2025-07-24 14:43:15 +03:00

8 lines
190 B
Docker

FROM python:3.12-slim-bookworm
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
COPY . /fastanime
ENV PATH=/root/.local/bin:$PATH
WORKDIR /fastanime
RUN uv tool install .
CMD ["bash"]