Skip to content

Commit

Permalink
docker: Add symbolic link python -> python3
Browse files Browse the repository at this point in the history
Needed for incubator EASE script tests for Python scripting engine.

Signed-off-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
  • Loading branch information
bhufmann committed Mar 25, 2024
1 parent c9b7470 commit 4e3f3ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/Dockerfile
Expand Up @@ -52,7 +52,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
metacity \
&& rm -rf /var/lib/apt/lists/* \
&& locale-gen en_US.UTF-8 \
&& pip3 install --upgrade pip
&& pip3 install --upgrade pip \
&& ln-s /usr/bin/python3 /usr/bin/python

# Need locale to be UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
Expand Down

0 comments on commit 4e3f3ae

Please sign in to comment.