2
0
Fork 0

Update auf PHP 8.0
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing

Dieser Commit ist enthalten in:
Nick Slowinski 2021-06-18 15:54:20 +02:00
Ursprung 3c0bf92cce
Commit 168832b6d0
Signiert von: nickslowinski
GPG-Schlüssel-ID: F7F36D4749228BAC
2 geänderte Dateien mit 8 neuen und 8 gelöschten Zeilen

Datei anzeigen

@ -9,29 +9,29 @@ steps:
dry_run: true
repo: nickslowinski/robotter112.de-php-docker
tags:
- '7.4-dev'
- '7-dev'
- '8.0-dev'
- '8-dev'
username:
from_secret: ns_docker_username
password:
from_secret: ns_docker_password
when:
branch:
- dev/v7.4
- dev/v8.0
- name: build and publish
image: plugins/docker
settings:
repo: nickslowinski/robotter112.de-php-docker
tags:
- '7.4'
- '7'
- '8.0'
- '8'
username:
from_secret: ns_docker_username
password:
from_secret: ns_docker_password
when:
branch:
- release/v7.4
- release/v8.0
- name: send telegram notification
image: appleboy/drone-telegram
settings:
@ -45,7 +45,7 @@ steps:
- build and publish
when:
branch:
- release/v7.4
- release/v8.0
status:
- failure
- success

Datei anzeigen

@ -1,4 +1,4 @@
FROM php:7.4-fpm
FROM php:8.0-fpm
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
RUN apt-get update && apt-get install -y procps && rm -rf /var/lib/apt/lists/*
RUN chmod uga+x /usr/local/bin/install-php-extensions && sync && \