Skip to content

Commit

Permalink
make: update to ubuntu:24.04 to fix readline issue
Browse files Browse the repository at this point in the history
With older make, the newer make code results in this error:
../make/readline.mk:13: *** unterminated call to function 'eval': missing ')'.  Stop.

Newer versions of make work fine.
  • Loading branch information
kanaka committed Aug 5, 2024
1 parent 54e7a92 commit 5d30087
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions impls/make/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:xenial
FROM ubuntu:24.04
MAINTAINER Joel Martin <github@martintribe.org>

##########################################################
Expand All @@ -9,7 +9,8 @@ MAINTAINER Joel Martin <github@martintribe.org>
RUN apt-get -y update

# Required for running tests
RUN apt-get -y install make python
RUN apt-get -y install make python3
RUN ln -fs /usr/bin/python3 /usr/local/bin/python

# Some typical implementation and test requirements
RUN apt-get -y install curl libreadline-dev libedit-dev
Expand Down

0 comments on commit 5d30087

Please sign in to comment.