2021-04-08 18:06:48 +00:00
|
|
|
FROM rust:buster
|
|
|
|
RUN apt-get update && \
|
2021-04-28 09:35:10 +00:00
|
|
|
apt-get install --yes libsodium-dev awscli python-pip wget rclone openssl socat && \
|
2021-04-08 18:06:48 +00:00
|
|
|
rm -rf /var/lib/apt/lists/*
|
2021-04-28 09:35:10 +00:00
|
|
|
RUN wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /usr/local/bin/mc && chmod +x /usr/local/bin/mc
|
2021-04-08 23:29:17 +00:00
|
|
|
RUN rustup component add rustfmt clippy
|
2021-04-08 18:06:48 +00:00
|
|
|
RUN pip install s3cmd
|