mirror of
https://git.deuxfleurs.fr/Deuxfleurs/garage.git
synced 2024-11-26 10:01:00 +00:00
7 lines
189 B
Docker
7 lines
189 B
Docker
|
FROM rust:buster
|
||
|
RUN apt-get update && \
|
||
|
apt-get install --yes libsodium-dev awscli python-pip && \
|
||
|
rm -rf /var/lib/apt/lists/*
|
||
|
RUN rustup component add rustfmt
|
||
|
RUN pip install s3cmd
|