20 lines
572 B
Docker
20 lines
572 B
Docker
FROM rust:1.32
|
|
|
|
RUN apt-get update -qq && \
|
|
apt-get install -qq \
|
|
apt-transport-https \
|
|
ca-certificates \
|
|
curl \
|
|
gnupg2 \
|
|
software-properties-common \
|
|
python-pip \
|
|
git
|
|
|
|
# Docker and docker-compose
|
|
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - &&\
|
|
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" && \
|
|
apt-get -qq update && apt-get install -y docker-ce && \
|
|
pip install docker-compose
|
|
|
|
RUN cargo install cargo-make
|