mirror of
https://github.com/g0ldyy/comet.git
synced 2026-01-12 01:16:12 +01:00
19 lines
377 B
Docker
19 lines
377 B
Docker
FROM ghcr.io/astral-sh/uv:python3.11-alpine
|
|
LABEL name="Comet" \
|
|
description="Stremio's fastest torrent/debrid search add-on." \
|
|
url="https://github.com/g0ldyy/comet"
|
|
|
|
RUN apk add --no-cache gcc python3-dev musl-dev linux-headers
|
|
|
|
WORKDIR /app
|
|
|
|
ARG DATABASE_PATH
|
|
|
|
COPY pyproject.toml .
|
|
|
|
RUN uv sync
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT ["uv", "run", "python", "-m", "comet.main"]
|