Skip to content
Open
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
10 changes: 3 additions & 7 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FROM php:8-alpine
FROM alpine:3.23
RUN apk add --quiet --no-cache \
bash \
apache2 \
ca-certificates \
php \
php-apache2 \
php-ctype \
php-phar \
Comment thread
qodo-free-for-open-source-projects[bot] marked this conversation as resolved.
Expand All @@ -15,12 +17,6 @@ RUN apk add --quiet --no-cache \
php-session \
php-sqlite3

# # use docker-php-extension-installer for automatically get the right packages installed
# ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/

# # Install extensions
# RUN install-php-extensions iconv gd pdo pdo_mysql pdo_pgsql pgsql

RUN ln -sf /dev/stdout /var/log/apache2/access.log && \
ln -sf /dev/stderr /var/log/apache2/error.log

Expand Down