Skip to content

Commit

Permalink
feat: add azcopy
Browse files Browse the repository at this point in the history
  • Loading branch information
basilgood committed Jan 30, 2025
1 parent cc8340e commit 1a8dd30
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ RUN apt update && apt install -y \
libgtk-3-0\
libpangocairo-1.0-0\
libcairo-gobject2\
libgdk-pixbuf-2.0-0
libgdk-pixbuf-2.0-0\
ca-certificates

RUN mkdir -p /tmp/azcopy && \
curl -L -o /tmp/azcopy.tar.gz https://aka.ms/downloadazcopy-v10-linux && \
tar -Oxzf /tmp/azcopy.tar.gz > /tmp/azcopy/out && cp /tmp/azcopy/out /usr/local/bin/azcopy && \
chmod +x /usr/local/bin/azcopy

WORKDIR /home/runner
USER runner

0 comments on commit 1a8dd30

Please # to comment.