Files
graphene/Tools/gsc/test/ubuntu18.04-python3-trusted-args.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

7 lines
121 B
Docker

From ubuntu:18.04
RUN apt-get update \
&& apt-get install -y python3
CMD ["python3", "-c", "print('HelloWorld!')"]