7 lines
130 B
Docker
7 lines
130 B
Docker
FROM python:latest
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY jf-detector.py ./
|
|
CMD python jf-detector.py |