You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I successfully have built a docker image with ContinuumIO with the following Dockerfile:
FROM continuumio/miniconda3:4.5.4
ENV FLASK_PROXY_PORT 8080
RUN apt-get update && apt-get install -y \
gcc \
libc-dev \
libxslt-dev \
libxml2-dev \
libffi-dev \
libssl-dev \
zip \
unzip \
vim \
&& rm -rf /var/lib/apt/lists/*
RUN apt-cache search linux-headers-generic
RUN conda install -c conda-forge pdal python-pdal gdal && conda clean --all
COPY requirements.txt requirements.txt
RUN pip install --upgrade pip setuptools six && pip install --no-cache-dir -r requirements.txt
# create action working directory
RUN mkdir -p /action
RUN mkdir -p /actionProxy
ADD https://raw.githubusercontent.com/apache/incubator-openwhisk-runtime-docker/8b2e205c39d84ed5ede6b1b08cccf314a2b13105/core/actionProxy/actionproxy.py /actionProxy/actionproxy.py
RUN mkdir -p /pythonAction
ADD https://raw.githubusercontent.com/apache/incubator-openwhisk-runtime-python/3%401.0.3/core/pythonAction/pythonrunner.py /pythonAction/pythonrunner.py
ENV PATH /opt/conda/share/proj:$PATH
CMD ["/bin/bash", "-c", "cd /pythonAction && python -u pythonrunner.py"]
However, I got some problems with apply some filters of PDAL libary with this errors:
stderr: proj_create_from_database: Open of /opt/conda/share/proj failed"
Then I tried to create an environment with conda but I couldn't activate it with docker, any suggestion? How can I create an environment and activate it with this docker file?
The text was updated successfully, but these errors were encountered:
I successfully have built a docker image with ContinuumIO with the following Dockerfile:
However, I got some problems with apply some filters of PDAL libary with this errors:
Then I tried to create an environment with conda but I couldn't activate it with docker, any suggestion? How can I create an environment and activate it with this docker file?
The text was updated successfully, but these errors were encountered: