mirror of
https://git.deuxfleurs.fr/Deuxfleurs/garage.git
synced 2026-05-16 06:06:53 -04:00
6 lines
189 B
Text
6 lines
189 B
Text
|
|
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
|