Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • v1.41.0
  • v1.40.1
  • v1.40.0
  • v1.39.1
  • v1.37.0
  • v1.38.0
  • v1.39.0
  • v1.36.5
  • v1.36.4
  • v1.36.3
  • v1.36.2
  • v1.36.0
  • v1.36.1
  • v1.35.0
  • v1.34.0
  • v1.33.3
  • v1.33.2
  • v1.33.1
  • v1.33.0
  • v1.32.0
21 results

Dockerfile

Blame
  • Dockerfile 645 B
    FROM buildpack-deps:stretch
    MAINTAINER elois <elois@ifee.fr>
    LABEL version="1.41"
    LABEL description="CI for DURS project (Divende Universel RuSt)"
    
    RUN apt-get update && \
       apt-get install -y build-essential curl python-pip pkg-config libssl-dev sudo tar zip && \
       apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
       
    # install rustup
    RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
    
    # rustup directory
    ENV PATH /root/.cargo/bin:$PATH
    
    
    # Install fmt and clippy
    RUN rustup component add rustfmt-preview
    RUN rustup component add clippy
    
    # install cargo deb and cargo deny
    RUN cargo install cargo-deb && cargo install cargo-deny