feat: Initial commit.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
FROM php:8.4-fpm
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y git zip unzip libzip-dev && \
|
||||
docker-php-ext-install zip pdo pdo_mysql
|
||||
|
||||
RUN pecl install redis && \
|
||||
docker-php-ext-enable redis
|
||||
|
||||
RUN rm /usr/local/etc/php-fpm.d/*.conf
|
||||
COPY php/fpm_pool.conf /usr/local/etc/php-fpm.d/sslguard.skyger.cz.conf
|
||||
|
||||
# startup.sh
|
||||
COPY php/startup.sh /usr/local/bin/startup.sh
|
||||
RUN chmod +x /usr/local/bin/startup.sh
|
||||
ENTRYPOINT ["/usr/local/bin/startup.sh"]
|
||||
Reference in New Issue
Block a user