mirror of
https://github.com/tlsnotary/tlsn.git
synced 2026-01-08 21:08:04 -05:00
* build: added scripts for local tee/sgx development * Improved documentation: move all explanation to one README file
12 lines
415 B
Docker
12 lines
415 B
Docker
FROM gramineproject/gramine:latest
|
|
WORKDIR /work
|
|
|
|
# Copies `notary-server-sgx.zip` from the CI build or created locally via `run-gramine-local.sh`.
|
|
COPY ./notary-server-sgx /work
|
|
RUN chmod +x /work/notary-server
|
|
|
|
LABEL org.opencontainers.image.source=https://github.com/tlsnotary/tlsn
|
|
LABEL org.opencontainers.image.description="TLSNotary notary server in SGX/Gramine."
|
|
|
|
ENTRYPOINT ["gramine-sgx", "notary-server"]
|