Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tolfx committed Aug 7, 2023
1 parent 0eb3210 commit a461a81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions games/source/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ ENV DEBIAN_FRONTEND=noninteractive

# Install required packages
RUN apt-get update && \
apt-get install -y wget build-essential gawk bison python3.4
apt-get install -y wget build-essential gawk bison python3

RUN if command -v python3.4 >/dev/null 2>&1; then \
ln -s $(command -v python3.4) /usr/local/bin/python; \
RUN if command -v python3 >/dev/null 2>&1; then \
ln -s $(command -v python3) /usr/local/bin/python; \
else \
echo "Python 3.4 not found."; \
exit 1; \
Expand Down

0 comments on commit a461a81

Please sign in to comment.