diff --git a/Dockerfile b/Dockerfile index 63c8afae..fce162f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,7 @@ ENV SERVER_URL=$SERVER_URL COPY ./vibi-dpu/target/debug/vibi-dpu /app/vibi-dpu COPY ./pubsub-sa.json /app/pubsub-sa.json +COPY ./repo-profiler.pem /app/repo-profiler.pem # Start the Rust application CMD ["/app/vibi-dpu"] diff --git a/cloudbuild-test.yaml b/cloudbuild-test.yaml index 084ff5bb..3c86af13 100644 --- a/cloudbuild-test.yaml +++ b/cloudbuild-test.yaml @@ -2,6 +2,10 @@ steps: # Fetch the credentials from the GCP bucket - name: 'gcr.io/cloud-builders/gsutil' args: ['cp', 'gs://vibi-test-secrets/pubsub-sa-test.json', 'pubsub-sa.json'] + + - name: 'gcr.io/cloud-builders/gsutil' + args: ['cp', 'gs://vibi-test-secrets/repo-profiler-test.pem', 'repo-profiler.pem'] + # Perform cargo build inside vibi-dpu directory - name: 'rust:latest'