mirror of
https://github.com/qurator-spk/sbb_textline_detection.git
synced 2025-07-01 14:40:03 +02:00
9 lines
167 B
Text
9 lines
167 B
Text
|
FROM python:3
|
||
|
|
||
|
ADD main.py /
|
||
|
ADD requirements.txt /
|
||
|
|
||
|
RUN pip install --proxy=http-proxy.sbb.spk-berlin.de:3128 -r requirements.txt
|
||
|
|
||
|
ENTRYPOINT ["python", "./main.py"]
|