cuehttp.dockerfile 384 B

123456789101112131415161718
  1. FROM ubuntu:18.04
  2. RUN apt-get update -yqq
  3. RUN apt-get install -yqq g++-7 cmake git libboost-all-dev
  4. ENV CUEHTTP=/cuehttp
  5. WORKDIR /
  6. RUN git clone https://github.com/xcyl/cuehttp.git
  7. WORKDIR /cuehttp
  8. RUN git checkout a7f5a4c935e22d110b70c5928c8ea2ce4dcbeeb5
  9. WORKDIR /cuehttp/examples/plaintext
  10. RUN mkdir build && cd build && cmake .. && make -j8
  11. EXPOSE 8080
  12. CMD ./build/plaintext