Browse Source

[php] Fix Caddy server (#9883)

Joan Miquel 3 months ago
parent
commit
87315e2b60
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frameworks/PHP/php/php-caddy.dockerfile

+ 1 - 1
frameworks/PHP/php/php-caddy.dockerfile

@@ -15,7 +15,7 @@ COPY deploy/conf/* /etc/php/8.4/fpm/
 RUN apt-get install -y debian-keyring debian-archive-keyring apt-transport-https > /dev/null \
     && curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg \
     && curl -sf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | tee /etc/apt/sources.list.d/caddy-stable.list \
-    && apt-get update > /dev/null && apt-get install caddy > /dev/null
+    && apt-get update > /dev/null && apt-get install caddy=2.9.1 > /dev/null
 
 ADD ./ /php
 WORKDIR /php