Skip to content

Commit

Permalink
fixed dnf install in Dockerfile (#14)
Browse files Browse the repository at this point in the history
typo

Co-authored-by: Tullio Sebastiani <[email protected]>
  • Loading branch information
tsebastiani and Tullio Sebastiani authored Jan 10, 2023
1 parent 669823e commit 475a09e
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ FROM quay.io/centos/centos:stream9
ENV CONTAINER true
ENV PATH $PATH:/root/.awscliv2/binaries
RUN rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm &&\
dnf install -y which &&\
dnf install -y jq &&\
dnf install -y nc &&\
dnf install -y pip &&\
dnf install -y figlet &&\
dnf install -y openssh-clients &&\
dnf install -y less &&\
pip install awscliv2 &&\
dnf install -y \
which \
jq \
nc \
pip \
figlet \
openssh-clients \
less && \
pip install awscliv2 && \
awscliv2 -i

WORKDIR /app
Expand Down

0 comments on commit 475a09e

Please sign in to comment.