fixed missing configs and install
This commit is contained in:
123
Dockerfile
123
Dockerfile
@ -3,12 +3,16 @@
|
||||
# Docker image for TYPO3 CMS
|
||||
FROM php:8.2-apache
|
||||
|
||||
|
||||
LABEL maintainer="Raphael Martin <raphy.martin@protonmail.ch>"
|
||||
|
||||
# set envirement
|
||||
ENV LANG=de_AT
|
||||
ENV APACHE_RUN_USER a2g-www
|
||||
ENV TYPO3_VERSION 12.4.8
|
||||
ENV TYPO3_SHA256CHECKSUM 8293b3441ec133fc8f9174fab5b88f450044ded0e188a0f12de37ad60a8bf8b3
|
||||
|
||||
|
||||
# change apache user
|
||||
RUN adduser --uid 1000 --gecos 'Apache User' --disabled-password $APACHE_RUN_USER \
|
||||
&& chown -R "$APACHE_RUN_USER:$APACHE_RUN_USER" /var/lock/apache2 /var/run/apache2
|
||||
@ -16,21 +20,61 @@ RUN adduser --uid 1000 --gecos 'Apache User' --disabled-password $APACHE_RUN_USE
|
||||
# update system
|
||||
RUN apt-get update -y && apt-get upgrade -y
|
||||
|
||||
# Install TYPO3
|
||||
# Install wget and locales
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
wget \
|
||||
locales
|
||||
|
||||
RUN export LANG=${LANG} && \
|
||||
echo "${LANG}.UTF-8 UTF-8" > /etc/locale.gen && \
|
||||
/usr/sbin/locale-gen
|
||||
|
||||
# Export env vars
|
||||
RUN { \
|
||||
echo "export LC_ALL=${LANG}.UTF-8"; \
|
||||
echo "export LANG=${LANG}.UTF-8"; \
|
||||
echo "export LANGUAGE=${LANG}.UTF-8"; \
|
||||
} >> ~/.bashrc
|
||||
|
||||
RUN cp ~/.bashrc /home/${APACHE_RUN_USER} && \
|
||||
chown -R "$APACHE_RUN_USER:$APACHE_RUN_USER" /home/${APACHE_RUN_USER}/.bashrc
|
||||
|
||||
# Download TYPO3
|
||||
RUN cd /tmp && \
|
||||
wget -O download.tar.gz https://get.typo3.org/${TYPO3_VERSION} && \
|
||||
echo "${TYPO3_SHA256CHECKSUM} /tmp/download.tar.gz" > /tmp/download.tar.gz.sum
|
||||
|
||||
RUN sha256sum -c "/tmp/download.tar.gz.sum"
|
||||
|
||||
# Install
|
||||
RUN set -ex; \
|
||||
\
|
||||
apt-get install -y --no-install-recommends \
|
||||
# Configure PHP
|
||||
libxml2-dev libfreetype6-dev \
|
||||
libxml2-dev \
|
||||
libfreetype6-dev \
|
||||
libjpeg62-turbo-dev \
|
||||
libmcrypt-dev \
|
||||
libpng-dev \
|
||||
libpq-dev \
|
||||
libzip-dev \
|
||||
zlib1g-dev \
|
||||
unzip \
|
||||
zip \
|
||||
sendmail \
|
||||
graphicsmagick && \
|
||||
docker-php-ext-configure gd --with-libdir=/usr/include/ --with-jpeg --with-freetype && \
|
||||
docker-php-ext-install -j$(nproc) mysqli soap gd zip opcache intl pgsql pdo_pgsql
|
||||
graphicsmagick
|
||||
|
||||
|
||||
RUN docker-php-ext-configure gd --with-libdir=/usr/include/ --with-jpeg --with-freetype && \
|
||||
docker-php-ext-configure zip
|
||||
|
||||
RUN docker-php-ext-install -j$(nproc) \
|
||||
pdo_mysql \
|
||||
soap \
|
||||
gd \
|
||||
zip \
|
||||
opcache \
|
||||
intl
|
||||
|
||||
# Clean
|
||||
RUN apt-get -y purge \
|
||||
@ -43,28 +87,73 @@ RUN apt-get -y purge \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/* /usr/src/*
|
||||
|
||||
RUN mkdir /usr/local/surf && \
|
||||
curl -L https://github.com/TYPO3/Surf/releases/download/3.4.6/surf.phar -o /usr/local/surf/surf.phar && \
|
||||
chmod +x /usr/local/surf/surf.phar && \
|
||||
ln -s /usr/local/surf/surf.phar /usr/local/bin/surf
|
||||
|
||||
# Configure Apache as needed
|
||||
RUN a2enmod rewrite
|
||||
|
||||
RUN cd /tmp && \
|
||||
wget -O download.tar.gz https://get.typo3.org/${TYPO3_VERSION} && \
|
||||
echo "${TYPO3_SHA256CHECKSUM} /tmp/download.tar.gz" > /tmp/download.tar.gz.sum
|
||||
RUN set -eux; \
|
||||
docker-php-ext-enable opcache; \
|
||||
{ \
|
||||
echo 'opcache.memory_consumption=128'; \
|
||||
echo 'opcache.interned_strings_buffer=8'; \
|
||||
echo 'opcache.max_accelerated_files=4000'; \
|
||||
echo 'opcache.revalidate_freq=2'; \
|
||||
} > /usr/local/etc/php/conf.d/opcache-recommended.ini
|
||||
|
||||
RUN { \
|
||||
echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR'; \
|
||||
echo 'display_errors = Off'; \
|
||||
echo 'display_startup_errors = Off'; \
|
||||
echo 'log_errors = On'; \
|
||||
echo 'error_log = /dev/stderr'; \
|
||||
echo 'log_errors_max_len = 1024'; \
|
||||
echo 'ignore_repeated_errors = On'; \
|
||||
echo 'ignore_repeated_source = Off'; \
|
||||
echo 'html_errors = Off'; \
|
||||
} > /usr/local/etc/php/conf.d/error-logging.ini
|
||||
|
||||
RUN set -eux; \
|
||||
a2enmod rewrite expires; \
|
||||
\
|
||||
a2enmod remoteip; \
|
||||
{ \
|
||||
echo 'RemoteIPHeader X-Forwarded-For'; \
|
||||
# these IP ranges are reserved for "private" use and should thus *usually* be safe inside Docker
|
||||
echo 'RemoteIPInternalProxy 10.0.0.0/8'; \
|
||||
echo 'RemoteIPInternalProxy 172.16.0.0/12'; \
|
||||
echo 'RemoteIPInternalProxy 192.168.0.0/16'; \
|
||||
echo 'RemoteIPInternalProxy 169.254.0.0/16'; \
|
||||
echo 'RemoteIPInternalProxy 127.0.0.0/8'; \
|
||||
} > /etc/apache2/conf-available/remoteip.conf; \
|
||||
a2enconf remoteip; \
|
||||
find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' +
|
||||
|
||||
|
||||
# install TYPO3 surf
|
||||
# RUN mkdir /usr/local/surf && \
|
||||
# curl -L https://github.com/TYPO3/Surf/releases/download/3.4.6/surf.phar -o /usr/local/surf/surf.phar && \
|
||||
# chmod +x /usr/local/surf/surf.phar && \
|
||||
# ln -s /usr/local/surf/surf.phar /usr/local/bin/surf
|
||||
|
||||
|
||||
RUN sha256sum -c "/tmp/download.tar.gz.sum"
|
||||
|
||||
RUN tar -xzf /tmp/download.tar.gz -C /var/www/ && \
|
||||
rm /tmp/download*
|
||||
|
||||
|
||||
RUN cd /var/www/html && \
|
||||
ln -s ../typo3_src-* typo3_src && \
|
||||
ln -s typo3_src/index.php && \
|
||||
ln -s typo3_src/typo3 && \
|
||||
touch FIRST_INSTALL
|
||||
|
||||
|
||||
RUN chown -R $APACHE_RUN_USER:$APACHE_RUN_USER /var/www/html && \
|
||||
chown -R $APACHE_RUN_USER:$APACHE_RUN_USER /var/www/typo3_src-*
|
||||
chown -R $APACHE_RUN_USER:$APACHE_RUN_USER /var/www/typo3_src-* && \
|
||||
chown -R root:root /etc/apache2/sites-enabled
|
||||
|
||||
RUN { \
|
||||
echo "ServerSignature Off"; \
|
||||
echo "ServerTokens Prod"; \
|
||||
} >> /etc/apache2/apache2.conf
|
||||
|
||||
RUN a2enmod headers
|
||||
|
||||
VOLUME /var/www
|
Reference in New Issue
Block a user