File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 15
15
"database" : " mysql" ,
16
16
"framework" : " hamlet" ,
17
17
"language" : " PHP" ,
18
- "flavor" : " PHP8" ,
18
+ "flavor" : " PHP8.1 " ,
19
19
"orm" : " micro" ,
20
20
"platform" : " FPM/FastCGI" ,
21
21
"webserver" : " nginx" ,
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:20.04
2
2
3
- ENV PHP_VERSION 8.0
3
+ ENV PHP_VERSION 8.1
4
4
ARG DEBIAN_FRONTEND=noninteractive
5
5
6
6
RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /dev/null
7
7
RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
8
8
RUN apt-get update -yqq > /dev/null && \
9
9
apt-get install -yqq nginx git unzip curl \
10
- php${PHP_VERSION}-cli php${PHP_VERSION}-fpm php${PHP_VERSION}-apcu php${PHP_VERSION}-pdo-mysql > /dev/null
10
+ php${PHP_VERSION}-cli php${PHP_VERSION}-fpm php${PHP_VERSION}-apcu php${PHP_VERSION}-pdo-mysql php${PHP_VERSION}-dev > /dev/null
11
11
12
12
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
13
13
You can’t perform that action at this time.
0 commit comments