mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
9 lines
147 B
Docker
9 lines
147 B
Docker
FROM python:3.12
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt .
|
|
RUN pip3 install -r ./requirements.txt
|
|
|
|
COPY . .
|
|
ENTRYPOINT ["python3", "-m", "autosync"]
|