Skip to content

Commit

Permalink
fix(docker): make all tests pass in docker setup (#3159)
Browse files Browse the repository at this point in the history
Some tests were not passing in local docker setup.
We needed to pin the emcsriptem to certain version.
  • Loading branch information
char0n authored Sep 20, 2023
1 parent 549a7ff commit 8dcc846
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ SHELL ["/bin/bash", "-c"]

# install emscripten
WORKDIR /tmp
RUN git clone https://github.com/emscripten-core/emsdk.git
RUN git clone --depth 1 --branch 2.0.24 https://github.com/emscripten-core/emsdk.git
WORKDIR emsdk
RUN ./emsdk install latest
RUN ./emsdk activate latest
RUN ./emsdk install 2.0.24
RUN ./emsdk activate 2.0.24
ENV PATH="/tmp/emsdk:/tmp/emsdk/upstream/emscripten:${PATH}"
ENV EMSDK = /tmp/emsdk

# setting CWD
WORKDIR /apidom

0 comments on commit 8dcc846

Please sign in to comment.