You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
# pulled from https://raw.githubusercontent.com/node-ffi-napi/node-ffi-napi/master/deps/libffi/config/linux/arm64/fficonfig.h because its not in debian
COPY fficonfig.h /usr/include/aarch64-linux-gnu/
COPY rustup-init /rustup-init
RUN chmod +x /rustup-init
RUN /rustup-init -y
# Buildscripts
COPY ringrtc-buildscript.sh /
RUN chmod +x /ringrtc-buildscript.sh
COPY ringrtc_patches/* /
# Clone ringrtc
# Fork by privacyshark. You should check this before trusting it.
RUN git clone https://github.com/signalapp/ringrtc
RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
ENV PATH=/depot_tools:$PATH
# NODE
# Goes last because docker build can't cache the tar.
# https://nodejs.org/dist/v14.15.5/
COPY node-v14.16.0-linux-x64.tar.gz /opt/
RUN mkdir -p /opt/node
RUN cd /opt/; tar xf node-v14.16.0-linux-x64.tar.gz