Part-DB.Part-DB-server/Dockerfile

59 lines
2.2 KiB
Text
Raw Normal View History

2022-07-21 00:59:34 +02:00
FROM php:8.1-apache
2019-11-17 19:07:07 +01:00
# Install needed dependencies for PHP build
RUN apt-get update && apt-get install -y pkg-config curl libcurl4-openssl-dev libicu-dev \
libpng-dev libjpeg-dev libfreetype6-dev gnupg zip libzip-dev libjpeg62-turbo-dev libonig-dev libxslt-dev libwebp-dev vim \
&& apt-get -y autoremove && apt-get clean autoclean && rm -rf /var/lib/apt/lists/*
# Install GD with support for multiple formats
RUN docker-php-ext-configure gd \
--with-webp \
--with-jpeg \
--with-freetype \
&& docker-php-ext-install gd
# Install other needed PHP extensions
RUN docker-php-ext-install pdo_mysql curl intl mbstring bcmath zip xml xsl
2019-11-17 19:07:07 +01:00
# Enable opcache and configure it recommended for symfony (see https://symfony.com/doc/current/performance.html)
2022-07-21 23:53:40 +02:00
RUN docker-php-ext-enable opcache; \
{ \
echo 'opcache.memory_consumption=256'; \
echo 'opcache.max_accelerated_files=20000'; \
echo 'opcache.validate_timestamp=0'; \
# Configure Realpath cache for performance
echo 'realpath_cache_size=4096K'; \
echo 'realpath_cache_ttl=600'; \
} > /usr/local/etc/php/conf.d/symfony-recommended.ini
# Install node and yarn
2019-11-17 19:07:07 +01:00
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
2022-07-25 22:44:41 +02:00
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - && apt-get update && apt-get install -y nodejs yarn && apt-get -y autoremove && apt-get clean autoclean && rm -rf /var/lib/apt/lists/*
2019-11-17 19:07:07 +01:00
# Install composer
2019-11-17 19:07:07 +01:00
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
# Set working dir
2019-11-17 19:07:07 +01:00
WORKDIR /var/www/html
2021-03-14 22:12:55 +01:00
COPY --chown=www-data:www-data . .
2019-11-17 19:07:07 +01:00
# Setup apache2
RUN a2dissite 000-default.conf
COPY ./.docker/symfony.conf /etc/apache2/sites-available/symfony.conf
RUN a2ensite symfony.conf
2021-03-14 22:12:55 +01:00
RUN a2enmod rewrite
2019-11-17 19:07:07 +01:00
# Install composer and yarn dependencies for Part-DB
2021-03-14 22:12:55 +01:00
USER www-data
RUN composer install -a --no-dev && composer clear-cache
RUN yarn install && yarn build && yarn cache clean && rm -rf node_modules/
2019-11-17 19:07:07 +01:00
2021-03-14 22:12:55 +01:00
# Use demo env to output logs to stdout
ENV APP_ENV=demo
ENV DATABASE_URL="sqlite:///%kernel.project_dir%/uploads/app.db"
2019-11-17 19:07:07 +01:00
2021-03-14 22:12:55 +01:00
USER root
2019-11-17 19:07:07 +01:00
2021-03-14 22:12:55 +01:00
VOLUME ["/var/www/html/uploads", "/var/www/html/public/media"]
EXPOSE 80