Skip to content

Commit bf1e7fd

Browse files
authored
Install opcache
And bump to PHP 8.0.8 + Python 3.9.6
1 parent 0a72694 commit bf1e7fd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# elecena.pl (c) 2015-2021
22

33
# @see https://hub.docker.com/_/composer
4-
FROM composer:2.1.3 AS php-composer
4+
FROM composer:2 AS php-composer
55
RUN /usr/bin/composer -v
66

77
# @see https://hub.docker.com/_/php
8-
FROM php:8.0.7-cli-alpine AS php
8+
FROM php:8.0.8-cli-alpine AS php
99
RUN apk add \
1010
bzip2-dev \
1111
libsodium-dev \
@@ -16,6 +16,7 @@ RUN docker-php-ext-install \
1616
bz2 \
1717
calendar \
1818
exif \
19+
opcache \
1920
pcntl \
2021
shmop \
2122
soap \
@@ -28,7 +29,7 @@ RUN docker-php-ext-install \
2829
RUN which php; php -v; php -m; php -i | grep ini
2930

3031
# @see https://hub.docker.com/_/python/
31-
FROM python:3.9.5-alpine
32+
FROM python:3.9.6-alpine
3233
RUN pip install virtualenv && rm -rf /root/.cache
3334
RUN python -V
3435

0 commit comments

Comments
 (0)