diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-08 13:18:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 13:18:11 -0500 |
commit | a08e4e5b4657469a5d686ec5621f681cd240f6e7 (patch) | |
tree | f4cb03e0f655b52b3ff9ffecc903e2d4c0654177 /test/e2e/build/Containerfile.with-multiple-secret | |
parent | f33b64d8b7d7b2bd22560cfacc90e25d1f9e16b4 (diff) | |
parent | 9ce3c0a87a6d7da45e71719b2ceb6d6abb0433fe (diff) | |
download | podman-a08e4e5b4657469a5d686ec5621f681cd240f6e7.tar.gz podman-a08e4e5b4657469a5d686ec5621f681cd240f6e7.tar.bz2 podman-a08e4e5b4657469a5d686ec5621f681cd240f6e7.zip |
Merge pull request #13457 from ashley-cui/flake
Move secret-verify-leak containerfile into its own Directory
Diffstat (limited to 'test/e2e/build/Containerfile.with-multiple-secret')
-rw-r--r-- | test/e2e/build/Containerfile.with-multiple-secret | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/e2e/build/Containerfile.with-multiple-secret b/test/e2e/build/Containerfile.with-multiple-secret new file mode 100644 index 000000000..f3478914f --- /dev/null +++ b/test/e2e/build/Containerfile.with-multiple-secret @@ -0,0 +1,3 @@ +FROM alpine +RUN --mount=type=secret,id=mysecret cat /run/secrets/mysecret +RUN --mount=type=secret,id=mysecret2 cat /run/secrets/mysecret2 |