Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 12 additions & 21 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,25 +1,16 @@
FROM docker.io/emscripten/emsdk:2.0.34
FROM emscripten/emsdk:3.1.51

RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
cmake \
git \
ragel \
patch \
libtool \
itstool \
pkg-config \
python3 \
python3-ply \
gettext \
autopoint \
automake \
autoconf \
m4 \
gperf \
licensecheck \
gawk \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
build-essential cmake git ragel \
patch libtool itstool pkg-config \
python3 python3-ply gettext autopoint \
automake autoconf m4 gperf \
licensecheck gawk \
&& apt-get clean autoclean -y \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /code

CMD ["make"]