blob: 998a567a9c067e98f345e7ec51fed904578f02b5 [file] [edit]
TAG=shim-build
build:
sudo docker build -t ${TAG} .
# Build without cache to make grabbing the full build log easier
build-no-cache:
sudo docker build --no-cache -t ${TAG} .
# Run the container to copy the two shim builds to the host
copy:
sudo docker run -v ${PWD}:/host:z ${TAG} cp -r /build/install /host
# Print details of the public certificate
cert-info:
openssl x509 -inform der -in neverware.cer -noout -text
.PHONY: build build-no-cache cert-info copy