Skip to content

Commit

Permalink
Add Dockerfile for AzCopy
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-cogan committed Nov 11, 2018
1 parent 9eaf9a7 commit ba7ad03
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Docker/dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM microsoft/dotnet:2.1-runtime

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
rsync \
libunwind8 \
&& rm -rf /var/lib/apt/lists/*

RUN set -ex \
&& curl -L -o azcopy.tar.gz \
https://aka.ms/downloadazcopylinux64 \
&& tar -xf azcopy.tar.gz && rm -f azcopy.tar.gz \
&& ./install.sh && rm -f install.sh \
&& rm -rf azcopy

CMD ["azcopy", "--version"]

0 comments on commit ba7ad03

Please sign in to comment.