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