Last active
October 11, 2021 20:51
-
-
Save torosent/f671d08652b0ea421c5327d8557b747a to your computer and use it in GitHub Desktop.
azcopy 10 alpine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:3.8 | |
ARG VERSION=azcopy_linux_amd64_10.0.8 | |
RUN apk --update add --virtual build-dependencies --no-cache wget tar | |
RUN apk --update add libc6-compat ca-certificates | |
RUN wget -O azcopyv10.tar https://aka.ms/downloadazcopy-v10-linux && \ | |
tar -xf azcopyv10.tar && \ | |
mkdir /app && \ | |
mv ${VERSION}/azcopy /app/azcopy && \ | |
rm -rf azcopy* && \ | |
apk del build-dependencies | |
WORKDIR /app | |
ENTRYPOINT ["./azcopy"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment