A Bug in the Dockerfile of run-harness
Opened this issue · 0 comments
Bhargav-manepalli commented
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
- Include these lines in Dockerfile of run-harness
- 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 - RUN mkdir -p /root/.aws
- COPY .aws /root/.aws
...
Expected behavior
"./runWeathervane.pl --configFile weathervane.config" This command will work successfully.
Additional context
No response