1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-03 00:27:46 +01:00
MadelineProto/tests/dockerfiles/Dockerfile.alpine

27 lines
852 B
Docker
Raw Permalink Normal View History

2023-11-29 10:41:40 +01:00
FROM php:8.3-fpm-alpine
2023-05-27 18:35:31 +02:00
2023-06-13 19:58:20 +02:00
RUN apk add --no-cache make g++ && \
2023-05-27 18:35:31 +02:00
curl -sSLf https://github.com/danog/PrimeModule-ext/archive/refs/tags/2.0.tar.gz | tar -xz && \
cd PrimeModule-ext-2.0 && \
make -j$(nproc) && \
make install && \
cd .. && \
rm -r PrimeModule-ext-2.0 && \
apk del make g++
2023-05-29 21:02:13 +02:00
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
2023-05-27 18:35:31 +02:00
RUN chmod +x /usr/local/bin/install-php-extensions && \
2023-09-30 21:07:53 +02:00
install-php-extensions pcntl uv-beta ffi pq memprof intl gmp mbstring pdo_mysql xml dom iconv zip opcache igbinary gd && \
2023-05-27 18:35:31 +02:00
rm /usr/local/bin/install-php-extensions
2023-11-19 19:06:13 +01:00
RUN apk add --no-cache ffmpeg nghttp2 jemalloc
ENV LD_PRELOAD=libjemalloc.so.2
2023-08-20 17:21:27 +02:00
2023-05-28 19:41:46 +02:00
ADD ./tests/dockerfiles/php.ini /usr/local/etc/php/php.ini
2023-05-28 19:11:30 +02:00
2023-05-30 22:57:41 +02:00
WORKDIR /app
2023-05-30 22:40:20 +02:00
CMD ["php", "/app/bot.php"]