Skip to content

Commit

Permalink
build: install pypy3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangt2333 committed Mar 28, 2024
1 parent 9964a9b commit 8dd4a78
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,12 @@ COPY --from=sduoj/docker-compose-wait:latest /wait /wait

# install Python(s)
COPY --from=py-builder /opt/python/ /opt/python/
COPY --from=pypy:3.10-7.3.15-slim /opt/pypy/ /opt/pypy/3.10/
RUN ln -s /opt/python/3.11/bin/python /usr/bin/python3 \
&& ln -s /opt/python/3.11/bin/python /usr/bin/python3.11 \
&& ln -s /opt/python/3.6/bin/python /usr/bin/python3.6
&& ln -s /opt/python/3.6/bin/python /usr/bin/python3.6 \
&& ln -s /opt/pypy/3.10/bin/python /usr/bin/pypy3 \
&& ln -s /opt/pypy/3.10/bin/python /usr/bin/pypy3.10

# install JDK(s)
ENV JAVA_HOME=/opt/java/openjdk
Expand Down

0 comments on commit 8dd4a78

Please sign in to comment.