Open
Description
Search before asking
Pake version
System version
Node.js version
Minimal reproduce step
docker build -t pake .
What did you expect to see?
A built Docker image
What did you see instead?
Errors about not installed libraries
Anything else?
To update those packages, update the Dockerfile versions of libsoup
, libjavascriptcoregtk
, and libwebkit2gtk
.
Here is the update line:
RUN --mount=type=cache,target=/var/cache/apt \
--mount=type=cache,target=/usr/local/cargo/registry \
apt-get update && apt-get install -y --no-install-recommends \
libdbus-1-dev libsoup-3.0-dev libjavascriptcoregtk-4.1-dev \
libwebkit2gtk-4.1-dev build-essential curl wget libssl-dev \
libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev \
gnome-video-effects
Are you willing to submit a PR?
- I'm willing to submit a PR!