Skip to content

Commit

Permalink
aws cli added
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrauzzi committed Apr 7, 2023
1 parent 86cdef9 commit 82a2c3a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FROM jupyter/base-notebook:python-3.7.6

USER root

RUN apt-get -y update && \
apt-get -y install curl python3-pip ca-certificates
RUN DEBIAN_FRONTEND="noninteractive" apt-get -y update && \
apt-get -y install curl python3-pip ca-certificates unzip groff less tzdata keyboard-configuration

# podman
RUN echo "deb [trusted=yes] https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_20.04/ /" | tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list && \
Expand All @@ -16,3 +16,8 @@ RUN echo "deb [trusted=yes] https://download.opensuse.org/repositories/devel:/ku
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
RUN chmod +x ./kubectl
RUN mv ./kubectl /usr/local/bin


# AWS CLI installation commands
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
RUN unzip awscliv2.zip && ./aws/install

0 comments on commit 82a2c3a

Please sign in to comment.