如何使用Plotly构建Docker Python映像?

时间:2018-09-04 21:07:59

标签: python dockerfile plotly alpine

我在使用Plotly的python:3.6-alpine创建Docker容器时遇到很多问题。 Plotly还使用Pandas和Numpy。当我在下面运行我的Dockerfile时,“ RUN venv / bin / pip install -r requirements.txt”失败。任何人对此都有建议,我是否缺少要求?

FROM python:3.6-alpine

RUN adduser -D visualdata

RUN pip install --upgrade pip

WORKDIR /home/visualdata

COPY requirements.txt requirements.txt
RUN python -m venv venv
RUN venv/bin/pip install -r requirements.txt
RUN venv/bin/pip install gunicorn
#RUN venv/bin/pip install install python3-pymysql

COPY app app
COPY migrations migrations
COPY visualdata.py config.py boot.sh ./
RUN chmod a+x boot.sh

ENV FLASK_APP visualdata.py

RUN chown -R visualdata:visualdata ./
USER visualdata

EXPOSE 8000
ENTRYPOINT ["./boot.sh"]

1 个答案:

答案 0 :(得分:0)

如果您查看Python docker映像official repository,有一个Dockerfile示例说明了pip步骤:

RUN pip install --no-cache-dir -r requirements.txt

您应该可以直接使用pip代替venv / bin / pip。

如果您仅在其中运行一个应用程序,则实际上并不需要在docker容器中使用virtualenv。容器已经提供了自己的隔离环境。