Initial commit
This commit is contained in:
19
php-fpm/Dockerfile
Normal file
19
php-fpm/Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM debian:bookworm
|
||||
|
||||
RUN apt-get update; apt-get full-upgrade -y; apt-get autoclean -y
|
||||
|
||||
COPY project/sury-repo.sh /tmp/sury-repo.sh
|
||||
COPY project/install-php8.2.sh /tmp/install-php8.2.sh
|
||||
COPY project/install-php-versions.sh /install-php-versions.sh
|
||||
COPY project/start-php-fpm.sh /start-php-fpm.sh
|
||||
COPY project/install-def-php.sh /tmp/install-def-php.sh
|
||||
|
||||
ENV DEF_PHP_VER="7.4"
|
||||
|
||||
COPY project/entrypoint.sh /entrypoint.sh
|
||||
|
||||
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
|
||||
|
||||
RUN /bin/sh /tmp/sury-repo.sh
|
||||
|
||||
RUN /bin/sh /tmp/install-php8.2.sh
|
||||
Reference in New Issue
Block a user