appstore-1panel/apps/php5/5.4.45/build/php/Dockerfile

25 lines
574 B
Docker
Raw Permalink Normal View History

2023-04-10 18:35:19 +08:00
ARG PHP_IMAGE
FROM ${PHP_IMAGE}
2023-04-09 10:55:06 +08:00
ARG TZ
ARG PHP_EXTENSIONS
ARG CONTAINER_PACKAGE_URL
COPY ./extensions /tmp/extensions
WORKDIR /tmp/extensions
RUN chmod +x install.sh \
&& sh install.sh \
&& rm -rf /tmp/extensions
2023-04-09 10:55:06 +08:00
# Install composer and change it's cache home
RUN curl -o /usr/bin/composer https://mirrors.aliyun.com/composer/composer.phar \
&& chmod +x /usr/bin/composer
2023-04-09 10:55:06 +08:00
ENV COMPOSER_HOME=/tmp/composer
2023-04-09 10:55:06 +08:00
# php image's www-data user uid & gid are 82, change them to 1000 (primary user)
RUN usermod -u 1000 www-data && groupmod -g 1000 www-data
2023-04-09 10:55:06 +08:00
WORKDIR /www