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 dry_run: true
repo: nickslowinski/robotter112.de-php-docker repo: nickslowinski/robotter112.de-php-docker
tags: tags:
- '7.4-dev' - '8.0-dev'
- '7-dev' - '8-dev'
username: username:
from_secret: ns_docker_username from_secret: ns_docker_username
password: password:
from_secret: ns_docker_password from_secret: ns_docker_password
when: when:
branch: branch:
- dev/v7.4 - dev/v8.0
- name: build and publish - name: build and publish
image: plugins/docker image: plugins/docker
settings: settings:
repo: nickslowinski/robotter112.de-php-docker repo: nickslowinski/robotter112.de-php-docker
tags: tags:
- '7.4' - '8.0'
- '7' - '8'
username: username:
from_secret: ns_docker_username from_secret: ns_docker_username
password: password:
from_secret: ns_docker_password from_secret: ns_docker_password
when: when:
branch: branch:
- release/v7.4 - release/v8.0
- name: send telegram notification - name: send telegram notification
image: appleboy/drone-telegram image: appleboy/drone-telegram
settings: settings:
@ -45,7 +45,7 @@ steps:
- build and publish - build and publish
when: when:
branch: branch:
- release/v7.4 - release/v8.0
status: status:
- failure - failure
- success - 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/ 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 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 && \ RUN chmod uga+x /usr/local/bin/install-php-extensions && sync && \