From 9be1fa1e11582b8ed3ab33d5e127af1a49a22c96 Mon Sep 17 00:00:00 2001 From: Scott Koranda Date: Mon, 20 Mar 2023 07:23:14 -0500 Subject: [PATCH 1/2] container update PHP base to 8.1.17 --- container/match/base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/match/base/Dockerfile b/container/match/base/Dockerfile index c0afe30d..2721b003 100644 --- a/container/match/base/Dockerfile +++ b/container/match/base/Dockerfile @@ -16,7 +16,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -FROM php:8.1.16-apache-bullseye +FROM php:8.1.17-apache-bullseye # Official PHP image with Apache HTTPD includes # --with-openssl From 12310f2deb11c3f1c7ea036157c513151c4596e7 Mon Sep 17 00:00:00 2001 From: Scott Koranda Date: Mon, 10 Apr 2023 10:50:01 -0500 Subject: [PATCH 2/2] container change owner of symlink --- container/match/base/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/container/match/base/Dockerfile b/container/match/base/Dockerfile index 2721b003..c9fdf885 100644 --- a/container/match/base/Dockerfile +++ b/container/match/base/Dockerfile @@ -69,6 +69,7 @@ RUN rm -f ${COMANAGE_MATCH_DIR}/app/tmp \ && chown -R www-data:www-data ${COMANAGE_MATCH_DIR}/app/tmp \ && cd /var/www/html \ && ln -s ${COMANAGE_MATCH_DIR}/app/webroot match \ + && ln -h www-data:www-data match \ && mkdir ${COMANAGE_MATCH_DIR}/local RUN a2enmod headers \