如何使用Python和Orange创建Docker容器

时间:2019-05-24 10:14:38

标签: python docker

有人知道我如何用Python和Orange创建一个Docker容器,而无需安装整个Anaconda软件包。

我设法使其与8.0 GB的容器一起使用,但这太大了

1 个答案:

答案 0 :(得分:1)

GitHub project page中查看README,然后下载适当的requirements-*文件。创建一个包含文件的目录,并像下面这样写一个Dockerfile

FROM python:3.7
RUN pip install PyQt5
COPY requirements-core.txt /tmp
RUN pip install -r requirements-core.txt
# repeat the previous two commands with other files, if needed
pip install git+https://github.com/biolab/orange3

根据需要添加其他任何命令,例如COPY您的源代码。