mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
96b95dc6ee
Introduced a new `.env.dist` template to streamline environment variable management. Added Manticore service to the `docker-compose.yml` for enhanced database querying support. Updated `docker-entrypoint.sh` to use `envsubst` for environment substitution when generating `.env`.
72 lines
2.1 KiB
Docker
72 lines
2.1 KiB
Docker
|
|
FROM composer:latest AS composer-base
|
|
FROM dunglas/frankenphp:1-php8.3
|
|
LABEL maintainer="PyRowMan"
|
|
ENV SERVER_NAME=:80
|
|
ARG MYSQL_CLIENT="mariadb-client"
|
|
ARG SEVENZIP_VERSION=2407
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
COPY --from=node:21 /usr/local/ /usr/local/
|
|
COPY --from=composer-base --link /usr/bin/composer /usr/bin/composer
|
|
|
|
RUN apt update \
|
|
&& apt install -y --no-install-recommends \
|
|
unrar-free 7zip lame libcap2-bin python3 gettext-base \
|
|
curl zip unzip git nano bash-completion sudo wget tmux time fonts-powerline \
|
|
gnupg libpng-dev dnsutils jq htop iputils-ping net-tools ffmpeg \
|
|
jpegoptim webp optipng pngquant libavif-bin watch iproute2 nmon \
|
|
libonig-dev libxml2-dev libicu-dev libjpeg-dev libfreetype6-dev libxslt-dev $MYSQL_CLIENT libcurl4-openssl-dev \
|
|
&& wget https://mediaarea.net/repo/deb/repo-mediaarea_1.0-24_all.deb \
|
|
&& dpkg -i repo-mediaarea_1.0-24_all.deb \
|
|
&& apt update \
|
|
&& apt install -y libmediainfo0v5 mediainfo libzen0v5 \
|
|
&& docker-php-ext-install \
|
|
bcmath \
|
|
exif \
|
|
gd \
|
|
intl \
|
|
pdo_mysql \
|
|
sockets \
|
|
pcntl \
|
|
&& pecl install redis \
|
|
&& docker-php-ext-enable redis \
|
|
&& apt clean \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
# Determine ARCH and download and extract the appropriate version of 7-Zip
|
|
RUN ARCH="$(dpkg --print-architecture)" && \
|
|
if [ "$ARCH" = "amd64" ]; then \
|
|
SZIP_URL="https://www.7-zip.org/a/7z$SEVENZIP_VERSION-linux-x64.tar.xz"; \
|
|
fi && \
|
|
if [ "$ARCH" = "arm64" ]; then \
|
|
SZIP_URL="https://www.7-zip.org/a/7z$SEVENZIP_VERSION-linux-arm64.tar.xz"; \
|
|
fi && \
|
|
wget "$SZIP_URL" -O /tmp/7z.tar.xz && \
|
|
tar -xf /tmp/7z.tar.xz -C /tmp/ && \
|
|
mv /tmp/7zz /usr/bin/7zz && \
|
|
rm -f /tmp/7z.tar.xz && rm -f /tmp/7zzs
|
|
|
|
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
|
|
|
COPY --chmod=755 ./docker-entrypoint.sh /usr/local/bin/docker-entrypoint
|
|
|
|
COPY . /app
|
|
|
|
RUN rm -Rf tests/
|
|
|
|
RUN composer install
|
|
|
|
RUN chmod -R 755 /app/vendor/
|
|
RUN chmod -R 777 /app/storage/
|
|
RUN chmod -R 777 /app/resources/
|
|
RUN chmod -R 777 /app/public/
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["--config", "/etc/caddy/Caddyfile", "--adapter", "caddyfile"]
|
|
ENTRYPOINT ["docker-entrypoint"]
|
|
|
|
|