Skip to content

Commit

Permalink
Add AWS CLI to actions-runner
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrondelez committed Apr 26, 2024
1 parent 431e670 commit 92d9203
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion actions-runner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
FROM mcr.microsoft.com/dotnet/runtime-deps:6.0-jammy as build

ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update -y \
&& apt-get install -y \
jq \
git \
curl \
unzip \
zip \
ssh
ssh \
awscli

FROM ghcr.io/actions/actions-runner:latest

Expand All @@ -16,4 +20,5 @@ COPY --from=build /usr/bin/curl /usr/bin/curl
COPY --from=build /usr/bin/unzip /usr/bin/unzip
COPY --from=build /usr/bin/zip /usr/bin/zip
COPY --from=build /usr/bin/ssh* /usr/bin/
COPY --from=build /usr/bin/aws /usr/bin/aws
COPY --from=build /usr/lib/ /usr/lib/

0 comments on commit 92d9203

Please sign in to comment.