mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 09:04:12 +02:00
debug symbols
This commit is contained in:
parent
b423fa1789
commit
530a94d5df
2 changed files with 3 additions and 2 deletions
|
|
@ -4,7 +4,7 @@ versions=("7.3" "7.4" "8.0" "8.1")
|
|||
|
||||
for version in "${versions[@]}"; do
|
||||
echo "building haze-php-$version"
|
||||
docker build --build-arg PHP_VERSION=$version -t "icewind1991/haze-php:$version" -f "php/Dockerfile" php
|
||||
docker build --build-arg BASE_IMAGE=icewind1991/php-dbg PHP_VERSION=$version -t "icewind1991/haze-php:$version" -f "php/Dockerfile" php
|
||||
done
|
||||
|
||||
for version in "${versions[@]}"; do
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
ARG PHP_VERSION
|
||||
FROM php:${PHP_VERSION}-fpm
|
||||
ARG BASE_IMAGE=php
|
||||
FROM ${BASE_IMAGE}:${PHP_VERSION}-fpm
|
||||
MAINTAINER Robin Appelman <robin@icewind.nl>
|
||||
|
||||
RUN DEBIAN_FRONTEND=noninteractive ;\
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue