mirror of
https://github.com/qurator-spk/sbb_textline_detection.git
synced 2025-06-13 22:00:05 +02:00
8 lines
167 B
Docker
8 lines
167 B
Docker
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"]
|