mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
9 lines
134 B
Docker
9 lines
134 B
Docker
FROM python:latest
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt .
|
|
RUN pip3 install -r ./requirements.txt
|
|
|
|
COPY . .
|
|
CMD python3 -m scanner -v
|