mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-05-13 10:52:28 -04:00
d075610195
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
9 lines
147 B
Docker
9 lines
147 B
Docker
FROM python:3.13
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt .
|
|
RUN pip3 install -r ./requirements.txt
|
|
|
|
COPY . .
|
|
ENTRYPOINT ["python3", "-m", "autosync"]
|