当我跑的时候
船坞-拼装-建造
我得到以下错误:
web_1 | /opt/conda/bin/python3: can't find '__main__' module in 'glm-plotter'glm-绘图仪/glm-绘图仪
...
if __name__ == "__main__":
app.secret_key = 'B0er23j/4yX R~XHH!jmN]LWX/,?Rh'
app.run()Dockerfile
FROM continuumio/miniconda3
RUN apt-get update && apt-get install -y \
libpq-dev \
build-essential
RUN apt-get install -y python3
RUN apt-get install -y python3-pip
ADD . /code
WORKDIR /code
RUN pip3 install -r requirements.txt
RUN cd glm-plotter
RUN ls glm-plotter
CMD ["python3", "glm-plotter"]发布于 2018-10-02 05:05:22
如果glm-绘图仪是指这存储库,那么根据它的文档,您应该运行python glm-plotter.py。
因此,您应该将Dockerfile更改为:
CMD ["python3", "glm-plotter.py"]https://stackoverflow.com/questions/52602226
复制相似问题