2021-04-08 20:06:48 +02:00
|
|
|
FROM rust:buster
|
|
|
|
RUN apt-get update && \
|
2021-04-28 11:35:10 +02:00
|
|
|
apt-get install --yes libsodium-dev awscli python-pip wget rclone openssl socat && \
|
2021-04-08 20:06:48 +02:00
|
|
|
rm -rf /var/lib/apt/lists/*
|
2021-04-28 11:35:10 +02: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-09 01:29:17 +02:00
|
|
|
RUN rustup component add rustfmt clippy
|
2021-04-08 20:06:48 +02:00
|
|
|
RUN pip install s3cmd
|