Monotone Arbeit nervt!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
540 B

2 years ago
  1. FROM rust:slim
  2. WORKDIR /opt
  3. # Install needed dependecies
  4. RUN echo "deb http://deb.debian.org/debian/ stretch main contrib non-free" >> /etc/apt/sources.list
  5. RUN echo "deb-src http://deb.debian.org/debian/ stretch main contrib non-free" >> /etc/apt/sources.list
  6. RUN apt-get update && apt-cache search libssl
  7. RUN apt-get update && apt-get install -y \
  8. build-essential checkinstall zlib1g-dev pkg-config libssl1.0-dev -y
  9. COPY pluriton-interface pluriton-interface
  10. WORKDIR /opt/pluriton-interface
  11. CMD cargo run --no-default-features