add CI build image

This commit is contained in:
emerald 2022-10-05 11:24:29 -04:00
parent a5fcfde5af
commit b0d82ea050
Signed by: emerald
GPG Key ID: 5648BBF928C9DC43
1 changed files with 7 additions and 0 deletions

7
Dockerfile.build Normal file
View File

@ -0,0 +1,7 @@
FROM node
RUN apt update -yy && apt upgrade -yy
RUN apt install -yy libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
RUN apt install -yy libasound2-dev
RUN curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal
RUN mv /root/.cargo/bin/* /usr/bin
ENTRYPOINT ["/bin/bash"]