Search results

  1. T

    Update Dockerfile with lsphp80-dev or lsphp81-dev

    It works with replacing http with https within enable_lst_debian_repo.sh RUN sed -i 's/http/https/g' enable_lst_debian_repo.sh resulting in: FROM litespeedtech/openlitespeed:1.7.16-lsphp80 WORKDIR /var/www/vhosts RUN apt update RUN apt install -y wget RUN wget...
  2. T

    Update Dockerfile with lsphp80-dev or lsphp81-dev

    I tried both - basically it is not working - see below: 1) With HTTPS: FROM litespeedtech/openlitespeed:1.7.16-lsphp80 WORKDIR /var/www/vhosts RUN apt update RUN apt install -y wget RUN wget https://rpms.litespeedtech.com/debian/enable_lst_debian_repo.sh RUN bash enable_lst_debian_repo.sh RUN...
  3. T

    Update Dockerfile with lsphp80-dev or lsphp81-dev

    Based on https://hub.docker.com/r/litespeedtech/openlitespeed I wanted to use lsphp80-dev / lsphp81-dev and therefore Created this dockerfile: FROM litespeedtech/openlitespeed:1.7.16-lsphp80 WORKDIR /var/www/vhosts RUN apt update RUN apt install -y wget RUN wget...
Top