JavascriptSubtitlesOctopus/Dockerfile
Oneric f9e43158c4 Update emscripten 2.0.34
Freetype upstream made changes to remove the need for our fcstat patch,
but we actually also need to update emscripten as linking to fstatfs is
bugged in our currently used version and will lead to runtime errors.

- Since emscripten 2.0.26 unresolved symbols cause errors at link time
  instead of only at runtime.
- The following commit contained in 2.0.27 fixed fstatfs linking:
    2126d3c1a6

Cherry-picked from: f92d7cebca
2022-12-23 20:13:09 +03:00

25 lines
483 B
Docker

FROM docker.io/emscripten/emsdk:2.0.34
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 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /code
CMD ["make"]