Skip to content

Commit b9078c6

Browse files
bwoebiLeiyks
authored andcommitted
Fix flow testsuite
Signed-off-by: Bob Weinand <[email protected]>
1 parent 7696dc2 commit b9078c6

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

docker-compose.linux.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ x-aliases:
1515
services:
1616
# --- Alpine ---
1717
'8.0-alpine': { <<: *linux_php_service }
18-
# --- Buster ---
18+
# --- Bookworm ---
1919
'7.0-bookworm': { <<: *linux_php_service }
2020
'7.1-bookworm': { <<: *linux_php_service }
2121
'7.2-bookworm': { <<: *linux_php_service }

dockerfiles/ci/buster/php-8.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ RUN set -eux; \
8484
switch-php debug;
8585

8686
# Install Composer
87-
COPY --from=composer:1 /usr/bin/composer /usr/local/bin/composer
87+
COPY --from=composer:2 /usr/bin/composer /usr/local/bin/composer
8888

8989
COPY welcome /etc/motd
9090
RUN sudo sed -i "s/VERSIONS/$(ls $PHP_INSTALL_DIR | xargs)/" /etc/motd

dockerfiles/ci/buster/php-8.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ RUN set -eux; \
8585
switch-php debug;
8686

8787
# Install Composer
88-
COPY --from=composer:1 /usr/bin/composer /usr/local/bin/composer
88+
COPY --from=composer:2 /usr/bin/composer /usr/local/bin/composer
8989

9090
COPY welcome /etc/motd
9191
RUN sudo sed -i "s/VERSIONS/$(ls $PHP_INSTALL_DIR | xargs)/" /etc/motd

dockerfiles/frameworks/flow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ services:
44
flow:
55
depends_on: ['mysql', 'nginx_file_server']
66
image: 'datadog/dd-trace-ci:php-framework-flow'
7+
environment:
8+
DD_LOGS_INJECTION: "false"
79
build:
810
context: contrib
911
target: flow
@@ -17,7 +19,6 @@ services:
1719
MYSQL_ROOT_PASSWORD: ""
1820
MYSQL_ALLOW_EMPTY_PASSWORD: 1
1921
MYSQL_ROOT_HOST: "%"
20-
DD_LOGS_INJECTION: "false"
2122
expose: ["3306"]
2223
healthcheck:
2324
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]

0 commit comments

Comments
 (0)