Package and OS version mismatch in the Dockerfile
Dockerfile line 1, 22.04 image is used:
FROM ubuntu:22.04
Dockerfile line 24, URL for 18.04 package is used:
wget --content-disposition "http://packages.chef.io/files/${CHANNEL}/chef-workstation/${VERSION}/ubuntu/18.04/chef-workstation_${VERSION}-1_amd64.deb" -O /tmp/chef-workstation.deb && \
Also it would make sense to use https, it fails SonarQube tests for us.
Is it fixed? Thank you.
@varnav yes it is fixed https://github.com/chef/chef-workstation/blob/main/Dockerfile#L1
It has 18.04 (instead of 22.04) and http (instead of https) at this line:
https://github.com/chef/chef-workstation/blob/ee469c63aaafca54f7a9f6267217c592c92e8876/Dockerfile#L24
Hello!
I see issue is closed, but nothing has been changed. Currently Dockerfile line 1, 22.04 image is used, but on line 24, URL for 18.04 package is used.
Can you please clarify?