Skip to content

Commit e6e65b0

Browse files
authored
Merge pull request #124 from CecileRobertMichon/azcopy
Add azcopy
2 parents 60a8179 + bd278f3 commit e6e65b0

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ creating [issues][] and submitting [pull requests][].
1212

1313
* based on [Ubuntu 16.04][]
1414
* [az][]: Azure cloud command-line tool
15+
* [azcopy][]: Utility for copying data to/from Microsoft Azure Blob and File storage
1516
* [dep][]: Go dependency management tool
1617
* [delve][]: debugger for the Go programming language
1718
* [Docker][]: Docker binaries to be able to bind mount /var/run/docker.sock in the dev environment container
@@ -60,6 +61,7 @@ The latest deis/go-dev Docker image is available at:
6061
```
6162

6263
[az]: https://github.com/Azure/azure-cli#readme
64+
[azcopy]: https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-linux?toc=%2fazure%2fstorage%2ffiles%2ftoc.json
6365
[Deis Workflow]: https://deis.com/
6466
[delve]: https://github.com/derekparker/delve
6567
[dep]: https://github.com/golang/dep

rootfs/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ RUN \
6060
| tar -vxz -C /usr/local/bin --strip=1 \
6161
&& mkdir -p /go/bin \
6262
&& curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh \
63+
&& wget https://packages.microsoft.com/repos/microsoft-ubuntu-xenial-prod/pool/main/a/azcopy/azcopy_7.2.0-netcore_ubuntu16.04_x64.deb \
64+
&& dpkg -i azcopy_7.2.0-netcore_ubuntu16.04_x64.deb || echo "missing dependencies" \
65+
&& apt-get update && apt-get -f -y install \
6366
&& curl -fsSLO https://get.docker.com/builds/Linux/x86_64/docker-17.05.0-ce.tgz \
6467
&& tar xzvf docker-17.05.0-ce.tgz -C /usr/local/bin \
6568
&& chmod +x -R /usr/local/bin/docker \

0 commit comments

Comments
 (0)