Files
graphene/Tools/gsc/test/ubuntu18.04-python3.dockerfile
Dmitrii Kuvaiskii 0a4d5ce0e5 [GSC] Refactor GSC and make it work again
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.
2021-02-03 23:10:29 -08:00

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"]