Update auf PHP 8.0
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing
Dieser Commit ist enthalten in:
Ursprung
3c0bf92cce
Commit
168832b6d0
2 geänderte Dateien mit 8 neuen und 8 gelöschten Zeilen
14
.drone.yml
14
.drone.yml
|
@ -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
|
|
@ -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 && \
|
||||
|
|
In neuem Issue referenzieren