Skip to content
This repository was archived by the owner on May 9, 2022. It is now read-only.

build: update dockerfile to use common base images #109

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

longtomjr
Copy link
Collaborator

No description provided.

@@ -10,6 +10,12 @@ debug = false
lib_path = "/root/rtc-data/rtc_auth_enclave/build/bin/enclave.signed.so"
attestation_provider_url = "https://sharedeus.eus.attest.azure.net"

[exec_enclave]
debug = false
# Relative to the binary
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could drop these "relative to" comments, if the paths are absolute?

Comment on lines +7 to +9
cd rtc_data_enclave && make && cd ..
cd rtc_auth_enclave && make && cd ..
cd rtc_exec_enclave && make && cd ..
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A bit easier and more idiomatic:

Suggested change
cd rtc_data_enclave && make && cd ..
cd rtc_auth_enclave && make && cd ..
cd rtc_exec_enclave && make && cd ..
(cd rtc_data_enclave && make)
(cd rtc_auth_enclave && make)
(cd rtc_exec_enclave && make)

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants