Add git to Docker build

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
This commit is contained in:
Clinton Wolfe 2021-02-26 10:13:07 -05:00
parent 77b29d7550
commit f4c19c41c0

View file

@ -26,6 +26,9 @@ RUN apt-get update && \
rpm2cpio /tmp/inspec.rpm | cpio -idmv && \
rm -rf /tmp/inspec.rpm
# Install any packages that make life easier for an InSpec installation
RUN apt-get install -y git
ENTRYPOINT ["inspec"]
CMD ["help"]
VOLUME ["/share"]