Skip to content

Commit 4c64ca1

Browse files
committed
chore(docker): [Dockerfile] change to use php8.0
1 parent 480fa60 commit 4c64ca1

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run_test:
6060
working_directory: ~/app
6161
docker:
62-
- image: cimg/php:7.4.33
62+
- image: cimg/php:8.0
6363
steps:
6464
- run_test
6565

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM thecodingmachine/php:7.4-v4-apache
1+
ARG PHP_EXTENSIONS="pdo_sqlite intl"
2+
FROM thecodingmachine/php:8.0-v4-slim-apache AS php
23

34
USER root
45

docker-compose.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ version: '3.4'
33
services:
44
php:
55
build: .
6-
image: php:7.4
7-
environment:
8-
PHP_EXTENSION_INTL: 1
9-
PHP_EXTENSION_PDO_SQLITE: 1
6+
image: php:8.0
107
volumes:
118
- ./:/var/www/html
129

0 commit comments

Comments
 (0)