vmware/weathervane

A Bug in the Dockerfile of run-harness

Opened this issue · 0 comments

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