mirror of
https://git.deuxfleurs.fr/Deuxfleurs/garage.git
synced 2024-12-01 20:41:01 +00:00
6 lines
189 B
Docker
6 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
|