File tree 2 files changed +10
-5
lines changed
docker/asmjs-unknown-emscripten
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 46
46
TARGET : arm-unknown-linux-gnueabihf
47
47
arm-unknown-linux-musleabihf :
48
48
TARGET : arm-unknown-linux-musleabihf
49
- # Disabled because currently broken, see:
50
- # https://github.com/rust-lang/libc/issues/1591
51
- # asmjs-unknown-emscripten:
52
- # TARGET: asmjs-unknown-emscripten
49
+ asmjs-unknown-emscripten :
50
+ TARGET : asmjs-unknown-emscripten
53
51
i686-linux-android :
54
52
TARGET : i686-linux-android
55
53
i686-unknown-linux-musl :
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:20.04
2
2
3
- RUN apt-get update && \
3
+ # This is a workaround to avoid the interaction with tzdata.
4
+ ENV DEBIAN_FRONTEND=noninteractive
5
+ ENV TZ=America/New_York
6
+
7
+ RUN apt-get update
8
+ RUN apt-get install -y --no-install-recommends tzdata
4
9
apt-get install -y --no-install-recommends \
5
10
ca-certificates \
6
11
curl \
@@ -12,6 +17,8 @@ RUN apt-get update && \
12
17
python3-distutils \
13
18
xz-utils
14
19
20
+ RUN ln -s /usr/bin/python3 /usr/bin/python & \
21
+ ln -s /usr/bin/pip3 /usr/bin/pip
15
22
COPY emscripten.sh /
16
23
RUN bash /emscripten.sh
17
24
You can’t perform that action at this time.
0 commit comments