Skip to content

Commit

Permalink
Update build-main-docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
RodgerZhu authored Apr 11, 2022
1 parent 8931b6a commit 1f08308
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/build-main-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,29 @@ jobs:
- name: Build the TF Docker image
run: |
cd cczoo/tensorflow-serving-cluster/tensorflow-serving/docker/tf_serving
docker build -f gramine_tf_serving.dockerfile . -t tf_serving:$(date +%s)
docker build -f gramine_tf_serving.dockerfile . -t tf_serving:latest
docker images
docker rmi tf_serving:latest
- name: Build the SP Docker image
run: |
cd cczoo/tensorflow-serving-cluster/tensorflow-serving/docker/secret_prov
docker build -f secret_prov.dockerfile . -t sp_serving:$(date +%s)
docker build -f secret_prov.dockerfile . -t sp_serving:latest
docker images
docker rmi sp_serving:latest
- name: Build the HFL Docker image
run: |
cd cczoo/horizontal_fl
docker build -f horizontal_fl.dockerfile . -t hfl-sgx:$(date +%s)
docker build -f horizontal_fl.dockerfile . -t hfl-sgx:latest
docker images
docker rmi hfl-sgx:latest
- name: Build the gRPC-TLS Docker image
run: |
cd cczoo/grpc-ra-tls/docker/gramine
docker build -f grpc-gramine-sgx-dev.dockerfile . -t grpc-tls:$(date +%s)
- name: Check Docker image Status
run: docker images
docker build -f grpc-gramine-sgx-dev.dockerfile . -t grpc-tls:latest
docker images
docker rmi grpc-tls:latest

0 comments on commit 1f08308

Please sign in to comment.