mirror of
https://github.com/jellyfin/JavascriptSubtitlesOctopus.git
synced 2024-11-26 23:50:39 +00:00
f9e43158c4
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
25 lines
483 B
Docker
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"]
|