-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Readd buildkit variable and test * Test with buildkit false * Use = for secret argument * Update interpreter * Add extra dockerfile with secret mounting * Update docker image to debug * Remove interpreter custom * Remove env * Update dockerfile * Use a different executor * Update executor * Use another executor * Use another executor * Use another executor * Update default version for docker executor * Rever useless change
- Loading branch information
1 parent
3b79d67
commit c0716ce
Showing
4 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ parameters: | |
|
||
tag: | ||
type: string | ||
default: "3.6" | ||
default: "3.8" | ||
description: Image tag | ||
|
||
docker: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#syntax=docker/dockerfile:1 | ||
FROM composer:latest | ||
|
||
WORKDIR /var/www/html | ||
|
||
RUN --mount=type=secret,id=COMPOSER_AUTH,env=COMPOSER_AUTH,required echo $COMPOSER_AUTH |