-
Notifications
You must be signed in to change notification settings - Fork 4
/
Dockerfile
32 lines (28 loc) · 959 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM golang:1.11
## Install Python
#RUN apt-get install python2.7
## Install node.js
#RUN apt-get install nodejs
## Install CMake (optional, only needed for tests and building Binaryen)
#RUN apt-get install cmake
## Install Java (optional, only needed for Closure Compiler minification)
#RUN apt-get install default-jre
#
## Get the emsdk repo
#RUN git clone https://github.com/juj/emsdk.git
#
## Enter that directory
#WORKDIR ./emsdk
#RUN git pull
## Download and install the latest SDK tools.
#RUN ./emsdk install latest
## Make the "latest" SDK "active" for the current user. (writes ~/.emscripten file)
#RUN ./emsdk activate latest
## Activate PATH and other environment variables in the current terminal
#RUN source ./emsdk_env.
RUN apt-get install python3
RUN go get github.com/hpcloud/tail
RUN go get github.com/rsms/gotalk
WORKDIR $GOPATH/src/github.com/geekSiddharth/inout/
COPY . $GOPATH/src/github.com/geekSiddharth/inout/
CMD ["make", "wasm"]