mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
11 lines
358 B
Docker
11 lines
358 B
Docker
|
FROM electronuserland/builder:12
|
||
|
|
||
|
ENV RUSTUP_HOME=/usr/local/rustup \
|
||
|
CARGO_HOME=/usr/local/cargo \
|
||
|
PATH=/usr/local/cargo/bin:$PATH
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y libsqlcipher-dev && \
|
||
|
rm -rf /var/lib/apt/lists/* && \
|
||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --profile minimal
|