File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ dockers:
119
119
goarch : amd64
120
120
use : buildx
121
121
build_flag_templates :
122
+ - " --pull"
122
123
- " --platform=linux/amd64"
123
124
- " --label=org.opencontainers.image.source=https://github.com/symfony-cli/symfony-cli"
124
125
- " --label=org.opencontainers.image.created={{.Date}}"
@@ -127,6 +128,7 @@ dockers:
127
128
goarch : arm64
128
129
use : buildx
129
130
build_flag_templates :
131
+ - " --pull"
130
132
- " --platform=linux/arm64"
131
133
- " --label=org.opencontainers.image.source=https://github.com/symfony-cli/symfony-cli"
132
134
- " --label=org.opencontainers.image.created={{.Date}}"
Original file line number Diff line number Diff line change 1
- FROM scratch
1
+ FROM scratch as build
2
+
3
+ COPY --from=composer:latest /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
2
4
3
5
COPY symfony /usr/local/bin/
6
+
7
+ FROM scratch
8
+
4
9
ENTRYPOINT ["/usr/local/bin/symfony" ]
10
+
11
+ COPY --from=build . .
You can’t perform that action at this time.
0 commit comments