Skip to content

Commit 80201be

Browse files
authored
Merge pull request #144 from HSLdevcom/dependency-updates
add azcopy
2 parents 8019dee + 39d0c08 commit 80201be

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ RUN set -eux; \
1212
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends google-chrome-stable libxss1; \
1313
rm -rf /var/lib/apt/lists/*
1414

15+
RUN set -eux; \
16+
curl -fL https://aka.ms/downloadazcopy-v10-linux -o /tmp/azcopy.tar.gz; \
17+
mkdir -p /tmp/azcopy; \
18+
tar -xzf /tmp/azcopy.tar.gz -C /tmp/azcopy; \
19+
install -m 0755 /tmp/azcopy/azcopy_linux_amd64_*/azcopy /usr/local/bin/azcopy; \
20+
rm -rf /tmp/azcopy /tmp/azcopy.tar.gz
1521

1622
ENV WORK=/opt/publisher
1723
# ENV NODE_ENV production # Cannot use until devdependency list is fixed in package.json

0 commit comments

Comments
 (0)