blob: 59aa5bb7764b90666dc40ec60aca3dbdd3195728 (
plain)
1
2
3
4
5
6
|
FROM debian:stable
RUN apt-get update && apt-get install -y \
gcc curl libdbus-1-dev protobuf-compiler
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"
|