Skip to content
Snippets Groups Projects
Select Git revision
  • 519ed147c447a63e8dfa66ee1c07a65a30ab21ba
  • master default protected
2 results

presentation.tex

Blame
  • Dockerfile 437 B
    FROM ubuntu:18.04
    MAINTAINER Laurent Modolo
    
    ENV PACKAGES git=1:2.17* \
       build-essential=12.4* \
       ca-certificates=20180409 \
       zlib1g-dev=1:1.2.11*
    
    RUN apt-get update && \
        apt-get install -y --no-install-recommends ${PACKAGES} && \
        apt-get clean
    
    RUN git clone https://github.com/l-modolo/UrQt.git && \
      cd UrQt && \
      git checkout ${URQT_VERSION} && \
      make && \
      cd .. && \
      mv UrQt/UrQt /usr/bin/ && \
      rm -Rf UrQt