cathode/Dockerfile.build

8 lines
380 B
Docker

FROM node:bullseye
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"]