Skip to content
Snippets Groups Projects
Commit ed5fcd52 authored by André Da Luz Moreira's avatar André Da Luz Moreira
Browse files

Changed python (linked to python3) and sh (now linked to bash instead of dash) in the container.

parent 66bd47ef
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,11 @@ RUN apt-get update \ ...@@ -20,6 +20,11 @@ RUN apt-get update \
RUN pip3 install PyFoam RUN pip3 install PyFoam
# Upgrade pip # Upgrade pip
RUN pip3 install --upgrade pip RUN pip3 install --upgrade pip
# Link python to version 3
RUN ln -s /usr/bin/python3 /usr/bin/python
# Linking /bin/sh to bash instead of dash!!
RUN mv /bin/sh /bin/sh.orig \
&& ln -s /bin/bash /bin/sh
# Håkan Nilsson's recommendations: # Håkan Nilsson's recommendations:
# Uncomment as you wish (some have graphical interfaces) # Uncomment as you wish (some have graphical interfaces)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment