Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
fixup! Continuous Deployment via Github action to build public Graphe…
Browse files Browse the repository at this point in the history
…ne Docker image.
  • Loading branch information
vahldiek committed Oct 2, 2020
1 parent 0d103c9 commit 902b639
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Tools/gsc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

IMAGES=aks
VERSIONS=latest
# Official Docker Hub organization name. In case of a name change in Docker Hub, this name as to be
# Official Docker Hub organization name. In case of a name change in Docker Hub, this name must
# changed.
DOCKERHUB_ORGANIZATION=graphenelibos

Expand All @@ -23,16 +23,16 @@ config.aks.%.yaml:
Repository: \"https://github.com/intel/SGXDataCenterAttestationPrimitives.git\"\n\
Branch: \"DCAP_1.7 && cp -r driver/linux/* .\"\n" > $@

images/graphene_aks.latest.dockerfile: config.aks.master.yaml
images:
mkdir -p images

images/graphene_aks.latest.dockerfile: config.aks.master.yaml images
./gsc build-graphene -f -c $< graphene-aks
mv graphene-aks/Dockerfile.compile $@
$(RM) -r graphene-aks

images:
mkdir -p images

.PHONY: generate-dockerfiles
generate-dockerfiles: images $(addsuffix .dockerfile, $(addprefix $(addprefix images/, graphene_${IMAGES}), .${VERSIONS}))
generate-dockerfiles: $(addsuffix .dockerfile, $(addprefix $(addprefix images/, graphene_${IMAGES}), .${VERSIONS}))

.PHONY: build-images
build-images: $(addprefix $(addprefix build-, $(IMAGES))-, $(VERSIONS))
Expand Down

0 comments on commit 902b639

Please sign in to comment.