Fix emsdk install and PATH update
This commit is contained in:
parent
8258bac40a
commit
fada94d93b
12
Dockerfile
12
Dockerfile
|
@ -21,16 +21,14 @@ RUN wget \
|
||||||
dpkg -i qemu.deb && \
|
dpkg -i qemu.deb && \
|
||||||
rm qemu.deb
|
rm qemu.deb
|
||||||
|
|
||||||
RUN cd /tmp && \
|
RUN git clone --depth 1 https://github.com/emscripten-core/emsdk.git && \
|
||||||
git clone https://github.com/emscripten-core/emsdk.git && \
|
./emsdk/emsdk install latest && \
|
||||||
cd emsdk && \
|
./emsdk/emsdk activate latest && \
|
||||||
./emsdk install latest && \
|
ln -s $(ls -d -1 /emsdk/node/**) /emsdk/node/latest
|
||||||
cd .. && \
|
|
||||||
rm -rf emsdk
|
|
||||||
|
|
||||||
RUN mkdir /sm64
|
RUN mkdir /sm64
|
||||||
WORKDIR /sm64
|
WORKDIR /sm64
|
||||||
ENV PATH="/sm64/tools:/emsdk:${PATH}"
|
ENV PATH="/sm64/tools:/emsdk:/emsdk/node/latest/bin:/emsdk/upstream/emscripten:${PATH}"
|
||||||
|
|
||||||
CMD echo 'usage: docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64 make VERSION=${VERSION:-us} -j4\n' \
|
CMD echo 'usage: docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64 make VERSION=${VERSION:-us} -j4\n' \
|
||||||
'see https://github.com/n64decomp/sm64/blob/master/README.md for advanced usage'
|
'see https://github.com/n64decomp/sm64/blob/master/README.md for advanced usage'
|
||||||
|
|
Loading…
Reference in New Issue