Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use aws-cli v2 #1113

Merged
merged 1 commit into from
Nov 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions aws-ts-thumbnailer/docker-ffmpeg-thumb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
FROM jrottenberg/ffmpeg

RUN apt-get update && \
apt-get install python-dev python-pip -y && \
apt-get clean
RUN apt-get update --yes && \
apt-get install curl unzip --yes && \
apt-get clean --yes

RUN pip install awscli
# Install AWS v2 cli
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
unzip awscliv2.zip && \
./aws/install && \
rm -rf aws

WORKDIR /tmp/workdir

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
FROM jrottenberg/ffmpeg

RUN apt-get update && \
apt-get install python-dev python-pip -y && \
apt-get clean
RUN apt-get update --yes && \
apt-get install curl unzip --yes && \
apt-get clean --yes

RUN pip install awscli
# Install AWS v2 cli
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
unzip awscliv2.zip && \
./aws/install && \
rm -rf aws

WORKDIR /tmp/workdir

Expand Down