Skip to content

Commit

Permalink
fix: missing aws cli dependencies (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
lholota authored May 10, 2021
1 parent 3f78587 commit f575c52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ RUN apk add --no-cache \
# Install AWS CLI
ADD https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip ./awscliv2.zip

RUN unzip awscliv2.zip && \
RUN apk add --no-cache groff=1.22.4-r1 less=563-r0 && \
unzip awscliv2.zip && \
./aws/install && \
# Clean up
rm -rf ./awscliv2.zip \
Expand Down

0 comments on commit f575c52

Please sign in to comment.