Skip to content

Commit

Permalink
Install libreadline-dev on Heroku-24
Browse files Browse the repository at this point in the history
Since it's no longer in the Heroku-24 build image after:
heroku/base-images#296

(The headers are only needed when the Ruby runtimes are being compiled. The run image still has the necessary runtime library counterparts.)

See also:
heroku/heroku-buildpack-python#1580
  • Loading branch information
edmorley committed May 9, 2024
1 parent 3d67041 commit 5e5cb8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.heroku-24
Expand Up @@ -6,7 +6,7 @@ USER root
RUN rm -rf /tmp/workspace
RUN mkdir -p /tmp/workspace

RUN apt-get update -y; apt-get install ruby -y
RUN apt-get update -y && apt-get install -y libreadline-dev ruby
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"

Expand Down

0 comments on commit 5e5cb8a

Please sign in to comment.