We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8019dee + 39d0c08 commit 80201beCopy full SHA for 80201be
1 file changed
Dockerfile
@@ -12,6 +12,12 @@ RUN set -eux; \
12
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends google-chrome-stable libxss1; \
13
rm -rf /var/lib/apt/lists/*
14
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
21
22
ENV WORK=/opt/publisher
23
# ENV NODE_ENV production # Cannot use until devdependency list is fixed in package.json
0 commit comments