Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: install sudo for gramine #250

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ RUN apt-get update && \
libsgx-dcap-ql \
libsgx-urts \
sgx-pck-id-retrieval-tool \
jq &&\
jq \
sudo && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
10 changes: 5 additions & 5 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
build:
context: ..
dockerfile: Dockerfile
image: gcr.io/evmchain/raiko:latest
image: us-docker.pkg.dev/evmchain/images/raiko:latest
container_name: raiko-init
command: --init
devices:
Expand All @@ -24,7 +24,7 @@ services:
args:
ENABLE_SELF_REGISTER: "true"
dockerfile: Dockerfile
image: gcr.io/evmchain/raiko:latest
image: us-docker.pkg.dev/evmchain/images/raiko:latest
container_name: raiko-init-self-register
command: --init-self-register
devices:
Expand All @@ -50,7 +50,7 @@ services:
build:
context: ..
dockerfile: Dockerfile
image: gcr.io/evmchain/raiko:latest
image: us-docker.pkg.dev/evmchain/images/raiko:latest
container_name: raiko
command: --config-path=/etc/raiko/config.sgx.json --chain-spec-path=/etc/raiko/chain_spec_list.docker.json
devices:
Expand Down Expand Up @@ -85,7 +85,7 @@ services:
build:
context: ..
dockerfile: Dockerfile
image: gcr.io/evmchain/raiko:latest
image: us-docker.pkg.dev/evmchain/images/raiko:latest
container_name: raiko-self-register
command: --config-path=/etc/raiko/config.sgx.json --chain-spec-path=/etc/raiko/chain_spec_list.docker.json
devices:
Expand Down Expand Up @@ -119,7 +119,7 @@ services:
build:
context: ..
dockerfile: Dockerfile.pccs
image: gcr.io/evmchain/pccs:latest
image: us-docker.pkg.dev/evmchain/images/pccs:latest
container_name: pccs
volumes:
- ${HOME}/.config/sgx-pccs/default.json:/opt/intel/pccs/config/default.json
Expand Down
Loading