从anaconda构建环境时,成功构建的docker镜像无法运行

时间:2019-02-10 14:26:06

标签: docker anaconda dockerfile

我使用以下Dockerfile构建了一个docker映像:

FROM continuumio/miniconda3

ENTRYPOINT [ “/bin/bash”, “-c” ]

ADD angular_restplus.yaml angular_restplus.yaml

RUN ["conda", "env", "create", "-f", "angular_restplus.yaml"]

RUN ["/bin/bash", "-c", "source activate work"]

COPY json_to_db.py json_to_db.py

CMD ["gunicorn", "-b", "0.0.0.0:3000", "json_to_db:app"]

并命令构建它:

sudo docker build -t testimage:latest .

贯穿整个过程:

Step 5/7 : RUN ["/bin/bash", "-c", "source activate work"]
 ---> Running in 45c6492b1c67
Removing intermediate container 45c6492b1c67
 ---> 5b5604dc281d
Step 6/7 : COPY json_to_db.py json_to_db.py
 ---> e5d05858bed1
Step 7/7 : CMD ["gunicorn", "-b", "0.0.0.0:3000", "json_to_db:app"]
 ---> Running in 3ada6fd24d09
Removing intermediate container 3ada6fd24d09
 ---> 6ed934acb671
Successfully built 6ed934acb671
Successfully tagged testimage:latest

但是,当我现在尝试使用它时,它不起作用;我尝试过:

sudo docker run --name testimage -d -p 8000:3000 --rm testimage:latest

打印时似乎工作正常

b963bdf97b01541ec93e1eb7

但是,我无法在浏览器和使用中访问该服务

sudo docker ps -a

仅显示从上方创建图像所需的中间容器。

当我尝试在没有-d标志的情况下运行它时,我得到了

gunicorn: 1: [: “/bin/bash”,: unexpected operator

这是否意味着我必须再次更改ENTRYPOINT?如果是这样,怎么办?

1 个答案:

答案 0 :(得分:1)

该解决方案可以在下面的post中找到。我不得不使用

"/bin/bash", "-c"

整个过程。以下代码现在可以正常工作(也使用@larsks的输入,同时删除了他的答案):

FROM continuumio/miniconda3

COPY angular_restplus.yaml angular_restplus.yaml
SHELL ["/bin/bash", "-c"] 
RUN ["conda", "env", "create", "-f", "angular_restplus.yaml"]
COPY json_to_db.py json_to_db.py
CMD source activate work; gunicorn -b 0.0.0.0:3000 json_to_db:app

然后一个人可以运行

docker build -t testimage:latest .

最后

docker run --name testimage -d -p 3000:3000 --rm testimage:latest

如果现在正在使用

docker ps -a

一个人会得到预期的结果:

CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                    NAMES
61df8ac0432c        testimage:latest    "/usr/bin/tini -- /b…"   16 seconds ago      Up 15 seconds       0.0.0.0:3000->3000/tcp   testimage

然后可以通过以下地址访问服务

http://localhost:3000/