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