A Dockerfile to Build Pomotroid
Pomotroid is a pomodoro timer application written in rust with powered by webview technology. Since you need several language processors I wrote a dockerfile to make an executable from the source. You are supposed to have the source code of pomotroid and the poroject root is the build context for Docker to use the below Dockerfile. FROM rust:bookworm AS build RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ --mount=type=cache,target=/var/lib/apt,sharing=locked \ apt update && apt-get --no-install-recommends install -y \ libasound2-dev \ libayatana-appindicator3-dev librsvg2-dev \ libssl-dev \ libwebkit2gtk-4....