Add symlink for python backwards compatibility

This commit is contained in:
Jamie Curnow
2022-01-11 10:07:31 +10:00
parent 44a795cf5f
commit 96f9660c25
+2 -1
View File
@@ -11,7 +11,8 @@ RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - \
&& apt-get install -y gcc make g++ git nodejs \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& npm install -g yarn
&& npm install -g yarn \
&& ln -s /usr/bin/python3 /usr/bin/python
# Check nodejs works on this architecture
COPY ./files/test.js /tmp/test.js