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

13 lines
259 B
Docker

From ubuntu:18.04
WORKDIR /app
RUN apt-get update \
&& apt-get -y install nodejs \
&& mkdir -p /graphene/Examples
# Build environment of this Dockerfile should point to the root of Graphene's Examples/
COPY nodejs/ /graphene/Examples
CMD ["node"]