mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-03 13:44:33 -04:00
9 lines
132 B
Docker
9 lines
132 B
Docker
FROM python:3.10
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt .
|
|
RUN pip3 install -r ./requirements.txt
|
|
|
|
COPY . .
|
|
CMD python3 -m scanner -v
|