]> git.puffer.fish Git - mirror/frr.git/commitdiff
docker/alpine/build.sh: Install packages to docker/alpine
authorChristian Franke <chris@opensourcerouting.org>
Tue, 26 Mar 2019 17:30:18 +0000 (18:30 +0100)
committerChristian Franke <chris@opensourcerouting.org>
Tue, 26 Mar 2019 17:33:45 +0000 (18:33 +0100)
The packages resulting from the Alpine build should be installed
to docker/alpine and not to the general docker directory.

docker/alpine/build.sh

index 40ed1194fe6cb23514352d146a30ec2f689b6f0c..5a79ebcdcbe70e4c2a9ef0238462821a6b250dad 100755 (executable)
@@ -12,6 +12,6 @@ commit=`printf '%u\n' 0x$c`
 docker build -f docker/alpine/Dockerfile \
        --build-arg commit=$commit -t frr:alpine-$c .
 id=`docker create frr:alpine-$c`
-docker cp ${id}:/pkgs/ docker
+docker cp ${id}:/pkgs/ docker/alpine
 docker rm $id
 docker rmi frr:alpine-$c