summaryrefslogtreecommitdiff
path: root/docker/alpine
diff options
context:
space:
mode:
authorChristian Franke <chris@opensourcerouting.org>2019-03-26 18:30:18 +0100
committerChristian Franke <chris@opensourcerouting.org>2019-03-26 18:33:45 +0100
commiteb3400c12bb8474baa35eb29b77b5c84c4113132 (patch)
tree7c5ecb50b3db2e9c5cec56df2ee2957d4970f4fc /docker/alpine
parenta4926e467ecd53ebf06793969838d063228b7744 (diff)
docker/alpine/build.sh: Install packages to docker/alpine
The packages resulting from the Alpine build should be installed to docker/alpine and not to the general docker directory.
Diffstat (limited to 'docker/alpine')
-rwxr-xr-xdocker/alpine/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/alpine/build.sh b/docker/alpine/build.sh
index 40ed1194fe..5a79ebcdcb 100755
--- a/docker/alpine/build.sh
+++ b/docker/alpine/build.sh
@@ -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