aboutsummaryrefslogtreecommitdiff
path: root/cmd/h/Dockerfile
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2019-11-28 17:41:03 +0000
committerChristine Dodrill <me@christine.website>2019-11-28 18:24:54 +0000
commit41bb9eb9d3881bfb48bb3077a0d83b802a5bb1ab (patch)
tree32cd554fb2c2905eee11437d8b94263fbb9aea75 /cmd/h/Dockerfile
parenta33ba59767a136a2d5ddd70eec4de5d4185566eb (diff)
downloadx-41bb9eb9d3881bfb48bb3077a0d83b802a5bb1ab.tar.xz
x-41bb9eb9d3881bfb48bb3077a0d83b802a5bb1ab.zip
move hlang to another repo
Diffstat (limited to 'cmd/h/Dockerfile')
-rw-r--r--cmd/h/Dockerfile19
1 files changed, 0 insertions, 19 deletions
diff --git a/cmd/h/Dockerfile b/cmd/h/Dockerfile
deleted file mode 100644
index 5d3ea5a..0000000
--- a/cmd/h/Dockerfile
+++ /dev/null
@@ -1,19 +0,0 @@
-ARG X_VERSION
-FROM xena/xperimental:$X_VERSION AS x
-
-FROM xena/alpine AS build
-WORKDIR /wabt
-RUN apk --no-cache add build-base cmake git python \
- && git clone --recursive https://github.com/WebAssembly/wabt /wabt \
- && mkdir build \
- && cd build \
- && cmake .. \
- && make && make install
-RUN ldd $(which wat2wasm)
-
-FROM xena/alpine
-COPY --from=build /usr/local/bin/wat2wasm /usr/local/bin/wat2wasm
-COPY --from=x /usr/local/bin/h /usr/local/bin/h
-ENV PORT 5000
-RUN apk --no-cache add libstdc++
-CMD /usr/local/bin/h