Add the container configuration, environment templates, and storage settings needed to deploy SPOTA with Docker and Coolify.
24 lines
790 B
Docker
24 lines
790 B
Docker
FROM php:7.4-apache
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
libfreetype6-dev \
|
|
libjpeg62-turbo-dev \
|
|
libonig-dev \
|
|
libpng-dev \
|
|
libzip-dev \
|
|
unzip \
|
|
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
|
|
&& docker-php-ext-install -j"$(nproc)" pdo_mysql mysqli gd zip mbstring exif \
|
|
&& a2enmod rewrite headers \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY docker/php.ini /usr/local/etc/php/conf.d/spota.ini
|
|
COPY docker/apache-vhost.conf /etc/apache2/sites-available/000-default.conf
|
|
|
|
WORKDIR /var/www/html
|
|
COPY . /var/www/html
|
|
|
|
RUN mkdir -p /var/www/html/files /var/www/html/img /tmp/spota_sessions \
|
|
&& chown -R www-data:www-data /var/www/html/files /var/www/html/img /tmp/spota_sessions
|