diff options
author | Chris Evich <cevich@redhat.com> | 2022-06-06 11:46:33 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2022-06-06 11:46:33 -0400 |
commit | 335925f47f76a6ba6c066434bdb564810aca99cb (patch) | |
tree | 0202861ab43ec042e44a60c4736c6bc25f6d23d9 /contrib/podmanimage/upstream | |
parent | b2ebb91656b4c735a2e392274632f2e097423cad (diff) | |
download | podman-335925f47f76a6ba6c066434bdb564810aca99cb.tar.gz podman-335925f47f76a6ba6c066434bdb564810aca99cb.tar.bz2 podman-335925f47f76a6ba6c066434bdb564810aca99cb.zip |
Minor: Remove useless addition of storage.conf
This was an accidental leftover from an in-development implementation.
The `sed` command further down entirely replaces the file in the image.
Strip out the unnecessary 'storage.conf' ADD instruction.
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'contrib/podmanimage/upstream')
-rw-r--r-- | contrib/podmanimage/upstream/Containerfile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/podmanimage/upstream/Containerfile b/contrib/podmanimage/upstream/Containerfile index b338a33ae..256c31232 100644 --- a/contrib/podmanimage/upstream/Containerfile +++ b/contrib/podmanimage/upstream/Containerfile @@ -29,7 +29,6 @@ echo -e "podman:1:999\npodman:1001:64535" > /etc/subuid; \ echo -e "podman:1:999\npodman:1001:64535" > /etc/subgid; ARG _REPO_URL="https://raw.githubusercontent.com/containers/podman/main/contrib/podmanimage/stable" -ADD $_REPO_URL/storage.conf /etc/containers/storage.conf ADD $_REPO_URL/containers.conf /etc/containers/containers.conf ADD $_REPO_URL/podman-containers.conf /home/podman/.config/containers/containers.conf |