Skip to content

Commit

Permalink
pinned 8.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriciojs committed Mar 9, 2024
1 parent f8e12da commit 1269a99
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion 8.2-nginx-prod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && \
openssl x509 -req -days 365 -in server.csr -signkey _.localhost.key -out _.localhost.crt && \
openssl x509 -in _.localhost.crt -out _.localhost.pem

FROM kooldev/php:8.2-prod
FROM kooldev/php:8.2.14-prod

ENV PHP_FPM_LISTEN=/run/php-fpm.sock \
NGINX_LISTEN=80 \
Expand Down
2 changes: 1 addition & 1 deletion 8.2-nginx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && \
openssl x509 -req -days 365 -in server.csr -signkey _.localhost.key -out _.localhost.crt && \
openssl x509 -in _.localhost.crt -out _.localhost.pem

FROM kooldev/php:8.2
FROM kooldev/php:8.2.14

ENV PHP_FPM_LISTEN=/run/php-fpm.sock \
NGINX_LISTEN=80 \
Expand Down
2 changes: 1 addition & 1 deletion 8.2-node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM kooldev/php:8.2
FROM kooldev/php:8.2.14

RUN apk add --update --no-cache npm yarn \
&& rm -rf /var/cache/apk/* /tmp/*
2 changes: 1 addition & 1 deletion 8.2-prod/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2-fpm-alpine
FROM php:8.2.14-fpm-alpine

ENV ASUSER= \
UID= \
Expand Down
2 changes: 1 addition & 1 deletion 8.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2-fpm-alpine
FROM php:8.2.14-fpm-alpine

ENV ASUSER= \
UID= \
Expand Down
10 changes: 5 additions & 5 deletions fwd-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
{
"name": "8.2",
"data": {
"from": "php:8.2-fpm-alpine",
"from": "php:8.2.14-fpm-alpine",
"prod": false,
"nginx": false,
"version": "8.2"
Expand All @@ -273,7 +273,7 @@
{
"name": "8.2-prod",
"data": {
"from": "php:8.2-fpm-alpine",
"from": "php:8.2.14-fpm-alpine",
"prod": true,
"nginx": false,
"version": "8.2"
Expand All @@ -300,7 +300,7 @@
{
"name": "8.2-nginx",
"data": {
"from": "kooldev/php:8.2",
"from": "kooldev/php:8.2.14",
"prod": false,
"nginx": true,
"version": "8.2"
Expand All @@ -327,7 +327,7 @@
{
"name": "8.2-nginx-prod",
"data": {
"from": "kooldev/php:8.2-prod",
"from": "kooldev/php:8.2.14-prod",
"prod": true,
"nginx": true,
"version": "8.2"
Expand All @@ -354,7 +354,7 @@
{
"name": "8.2-node",
"data": {
"from": "kooldev/php:8.2",
"from": "kooldev/php:8.2.14",
"version": "8.2"
},
"files": [
Expand Down
10 changes: 5 additions & 5 deletions kool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ scripts:
- docker build -t kooldev/php:8.1-nginx-prod 8.1-nginx-prod
- docker build -t kooldev/php:8.1-node 8.1-node
build-8.2:
- docker build -t kooldev/php:8.2 8.2
- docker build -t kooldev/php:8.2-prod 8.2-prod
- docker build -t kooldev/php:8.2-nginx 8.2-nginx
- docker build -t kooldev/php:8.2-nginx-prod 8.2-nginx-prod
- docker build -t kooldev/php:8.2-node 8.2-node
- docker build --platform=linux/amd64 -t kooldev/php:8.2.14 8.2
- docker build --platform=linux/amd64 -t kooldev/php:8.2.14-prod 8.2-prod
- docker build --platform=linux/amd64 -t kooldev/php:8.2.14-nginx 8.2-nginx
- docker build --platform=linux/amd64 -t kooldev/php:8.2.14-nginx-prod 8.2-nginx-prod
- docker build --platform=linux/amd64 -t kooldev/php:8.2.14-node 8.2-node
build-8.3:
- docker build -t kooldev/php:8.3 8.3
- docker build -t kooldev/php:8.3-prod 8.3-prod
Expand Down

0 comments on commit 1269a99

Please sign in to comment.