You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 29, 2024. It is now read-only.
Hi, I have a short question regarding the php-v8 ppa. Iam using this ppa in a docker image which automatically installs this extension. It uses a fixed version i.e. 0.1.3.1-ppa1~xenial unfortunately if you release a new version it is not possible to install an older version anymore. Basically my docker file looks like:
ENV PHPV8_VERSION "0.1.3.1-ppa1~xenial"
RUN add-apt-repository -y ppa:pinepain/php
RUN apt-get update -y
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install php-v8=${PHPV8_VERSION}
I have updated now my dockerfile to 0.1.6-ppa1~xenial and everything works fine. But is there a way to install older versions so that my dockerfile does not break directly if you release a new version?