Skip to content
Snippets Groups Projects
Commit 5ae23d2c authored by Jan David Mol's avatar Jan David Mol
Browse files

Add support for python modules which carry C/C++ code, such as python-geohash

parent 7849eec9
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,9 @@ ARG CONTAINER_EXECUTION_UID=1000 ...@@ -9,6 +9,9 @@ ARG CONTAINER_EXECUTION_UID=1000
RUN sudo adduser --disabled-password --system --uid ${CONTAINER_EXECUTION_UID} --no-create-home --home ${HOME} user || exit 0 RUN sudo adduser --disabled-password --system --uid ${CONTAINER_EXECUTION_UID} --no-create-home --home ${HOME} user || exit 0
RUN sudo chown ${CONTAINER_EXECUTION_UID} -R ${HOME} RUN sudo chown ${CONTAINER_EXECUTION_UID} -R ${HOME}
# Add compiler to install python packages which come with C++ code
RUN sudo apt-get install -y g++ gcc python3-dev
# Install git to install pip requirements from git # Install git to install pip requirements from git
RUN sudo apt-get install -y git RUN sudo apt-get install -y git
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment