vmware / weathervane

Virtual-Infrastructure and Cloud Performance Benchmark
Other
153 stars 39 forks source link

A Bug in the Dockerfile of run-harness #257

Open Bhargav-manepalli opened 7 months ago

Bhargav-manepalli commented 7 months ago

Describe the bug

When I tried to run the runharness container through "./runWeathervane.pl --configFile weathervane.config". Then, I got aws exec is not found. So, I have included the installation steps for AWS cli in the run-harness Dockerfile. Then, Everything worked well.

Reproduction steps

  1. Include these lines in Dockerfile of run-harness
  2. RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" \ && unzip awscliv2.zip \ && ./aws/install \ && rm -rf aws awscliv2.zip
  3. RUN mkdir -p /root/.aws
  4. COPY .aws /root/.aws ...

Expected behavior

"./runWeathervane.pl --configFile weathervane.config" This command will work successfully.

Additional context

No response