Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use the latest pipeline docker image #1078

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
build:
runs-on: ubuntu-latest
container:
image: danger89/mbin-pipeline:1.1.0
image: danger89/mbin-pipeline:1.2.0
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
unit-test:
runs-on: ubuntu-latest
container:
image: danger89/mbin-pipeline:1.1.0
image: danger89/mbin-pipeline:1.2.0
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
security-check:
runs-on: ubuntu-latest
container:
image: danger89/mbin-pipeline:1.1.0
image: danger89/mbin-pipeline:1.2.0
steps:
- uses: actions/checkout@v4

Expand All @@ -106,7 +106,7 @@ jobs:
fixer-dry-run:
runs-on: ubuntu-latest
container:
image: danger89/mbin-pipeline:1.1.0
image: danger89/mbin-pipeline:1.2.0
steps:
- uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions ci/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM php:8.3

# Add composer
COPY --from=composer:2.7.7 /usr/bin/composer /usr/bin/composer
COPY --from=composer:2.7.8 /usr/bin/composer /usr/bin/composer

# Add NodeJS
RUN apt-get update && apt-get install -y nodejs npm
Expand All @@ -15,7 +15,7 @@ RUN curl -sSLf \
https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions
RUN chmod +x /usr/local/bin/install-php-extensions

RUN install-php-extensions amqp intl redis gd zip bcmath
RUN install-php-extensions amqp intl redis gd zip bcmath xsl

# Install local-php-security-checker (same as used by "symfony security:check")
RUN curl -sSLf \
Expand Down
Loading