mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-02 03:41:32 +00:00
Commit "Introduce one, central manifest, zero-config children and constant MRENCLAVE" broke GSC. This commit fixes GSC (mainly adjusts it the single-manifest change in that commit). Also, significant internal refactoring is done (no user-visible changes). Also, scripts now explicitly use UTF-8 when reading/writing the manifest files because they are written in TOML which forces UTF-8.
11 lines
256 B
Docker
11 lines
256 B
Docker
From ubuntu:18.04
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y python3 \
|
|
&& mkdir -p /graphene/Examples
|
|
|
|
# Build environment of this Dockerfile should point to the root of Graphene's Examples/
|
|
COPY python-simple/ /graphene/Examples
|
|
|
|
CMD ["python3"]
|