mirror of
https://github.com/mudler/luet.git
synced 2025-10-19 09:56:06 +00:00
It allows to copy build artifact during buildtime. In this way artifacts between different seed images can be shared ``` retrieve: - a-test-1.0.package.* - https://... ``` They will be available under WORKDIR
10 lines
138 B
YAML
10 lines
138 B
YAML
image: "luet/base"
|
|
seed: "alpine"
|
|
steps:
|
|
- echo foo > /test
|
|
- echo bar > /test2
|
|
retrieve:
|
|
- test
|
|
- http://www.google.com
|
|
env:
|
|
- test=1 |