Skip to content

Commit

Permalink
fix: Install awscli in Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Tucker <[email protected]>
  • Loading branch information
dave-tucker committed Mar 14, 2024
1 parent 7a23ba7 commit b92fca9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ RUN dnf install -y nodejs npm python3 python3-pip python3-devel git gcc gcc-c++
# Install lab CLI
RUN pip install -e git+https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/redhat-et/instruct-lab-cli#egg=cli

# Install the app
# Install awscliv2
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
unzip awscliv2.zip && \
./aws/install

# Install the bot
WORKDIR /usr/src/app
COPY package.json package-lock.json ./
RUN npm install
Expand Down

0 comments on commit b92fca9

Please sign in to comment.