Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.tmpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:12.5 AS base
FROM debian:12.15 AS base

LABEL maintainers="contact@wikiteq.com,pavel@wikiteq.com,alexey@wikiteq.com"
LABEL org.opencontainers.image.source=https://github.com/WikiTeq/Taqasta
Expand Down
5 changes: 4 additions & 1 deletion templates/base.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ ENV MW_VERSION=REL1_43 \
MW_IMPORT_VOLUME=/import \
WWW_USER=www-data \
WWW_GROUP=www-data \
APACHE_LOG_DIR=/var/log/apache2
APACHE_LOG_DIR=/var/log/apache2 \
DEBIAN_FRONTEND=noninteractive

# System setup
RUN set x; \
rm -rf /var/lib/apt/lists/* && \
apt-get clean && \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \
wget \
lsb-release \
Expand All @@ -24,6 +26,7 @@ RUN set x; \
wget -q -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg && \
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/php.list && \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \
git \
inotify-tools \
Expand Down
Loading