Skip to content

Commit 4967189

Browse files
committed
Add a workaround for tzdata
1 parent 8de521c commit 4967189

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

ci/docker/wasm32-unknown-emscripten/Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
FROM ubuntu:20.04
22

3-
RUN apt-get update && \
4-
apt-get install -y --no-install-recommends \
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
9+
RUN apt-get install -y --no-install-recommends \
510
ca-certificates \
611
g++ \
712
make \

0 commit comments

Comments
 (0)