Skip to content
Merged
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
11 changes: 3 additions & 8 deletions 7.3/Dockerfile → 8.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:7.3-alpine3.13
FROM php:8.1-rc-alpine3.13

# Install dev dependencies
RUN apk add --no-cache --virtual .build-deps \
Expand Down Expand Up @@ -29,6 +29,7 @@ RUN apk add --no-cache \
mysql-client \
nodejs \
npm \
oniguruma-dev \
yarn \
openssh-client \
postgresql-libs \
Expand All @@ -48,26 +49,20 @@ RUN docker-php-ext-enable \
xdebug

# Configure php extensions
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-configure zip --with-libzip
RUN docker-php-ext-configure gd --with-freetype --with-jpeg

# Install php extensions
RUN docker-php-ext-install \
bcmath \
calendar \
curl \
exif \
gd \
iconv \
intl \
mbstring \
pdo \
pdo_mysql \
pdo_pgsql \
pdo_sqlite \
pcntl \
soap \
tokenizer \
xml \
zip

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

| Tags | PHP version | Features |
| - | - | - |
| 7.3 | 7.3 | ✅ Everything. |
| 7.4 | 7.4 | ✅ Everything. |
| 8.0 | 8.0 | ✅ Everything. |
| 8.1 | 8.1 | ✅ Everything. |
| stable | **8.0** | 🔗 Aliases the latest stable version of PHP that supports all features of this docker image. |
| latest | **8.0** | 🔗 Aliases the latest stable version of PHP available (even if that version does not support all features yet). |

Expand Down