Skip to content
Snippets Groups Projects
Commit 89da53d1 authored by Martin Killenberg's avatar Martin Killenberg
Browse files

fixed name of tubleweed image in modify_image helper script

parent 866281f4
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
# --security-opt seccomp:unconfined flag, which is not available when building an image. So here is the work-around:
# Create a container with the required flag and start it
docker create -i --security-opt seccomp:unconfined --name tumbleweed_updater tumbleweed
docker create -i --security-opt seccomp:unconfined --name tumbleweed_updater builder:tumbleweed
docker start tumbleweed_updater
# Execute the required commands in the container
......@@ -16,7 +16,7 @@ docker exec tumbleweed_updater git config --system https.proxy http://xfelproxy.
# Stop the container and commit the changes to the image
docker stop tumbleweed_updater
docker commit tumbleweed_updater tumbleweed
docker commit tumbleweed_updater builder:tumbleweed
# Finally remove the container
docker container rm tumbleweed_updater
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment