From 4f001741c216c6c6a835e0badf67588521957459 Mon Sep 17 00:00:00 2001 From: dev-chiefworks Date: Wed, 13 Apr 2022 19:27:29 -0400 Subject: [PATCH] fix --- docker/apache/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/apache/Dockerfile b/docker/apache/Dockerfile index 969281d..4d2b936 100644 --- a/docker/apache/Dockerfile +++ b/docker/apache/Dockerfile @@ -14,6 +14,7 @@ RUN apt-get install -y \ libmcrypt-dev \ libreadline-dev \ libfreetype6-dev \ + libssl-dev \ g++ RUN docker-php-ext-install \ @@ -41,7 +42,7 @@ RUN chmod +x /usr/local/bin/composer RUN composer self-update COPY / /var/www/html/ -# 6. we need a user with the same UID/GID with host user +# 6. we need a user with the same UID/GID with host user # so when we execute CLI commands, all the host file's ownership remains intact # otherwise command from inside container will create root-owned files and directories ARG uid=1000