DragonOsman

Dockerfile build output 2

Oct 17th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.75 KB | None | 0 0
  1. docker build -t currency_converter .
  2. Sending build context to Docker daemon  53.67MB
  3. Step 1/12 : FROM ubuntu:18.04
  4.  ---> cd6d8154f1e1
  5. Step 2/12 : WORKDIR /app
  6.  ---> Using cache
  7.  ---> 61e96da3f784
  8. Step 3/12 : COPY /scripts /styles index.html currency_converter.cpp /app/
  9.  ---> Using cache
  10.  ---> c1ce2b77d342
  11. Step 4/12 : RUN apt-get update   && apt-get install -y git                         g++                         build-essential                         make                         wget                         cmake
  12.  ---> Using cache
  13.  ---> 49023be84dbb
  14. Step 5/12 : RUN wget https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.tar.bz2     && tar -xjf boost_1_68_0.tar.bz2     && rm -rf boost_1_68_0.tar.bz2     && cd boost_1_68_0     && ./bootstrap.sh     && ./b2 install
  15.  ---> Using cache
  16.  ---> 4e1f671775c2
  17. Step 6/12 : RUN git clone https://github.com/flexferrum/jinja2cpp     && cd jinja2cpp     && git submodule -q update --init     && mkdir build     && cd build     && cmake .. -DCMAKE_INSTALL_PREFIX=../install     && cmake --build . --target all
  18.  ---> Using cache
  19.  ---> 131134c1e70d
  20. Step 7/12 : RUN git clone https://github.com/nlohmann/json
  21.  ---> Using cache
  22.  ---> de420b7b12b8
  23. Step 8/12 : RUN g++ -std=c++14 -Wall -pedantic -I app/jinja2cpp/install/include -I app/json/include -I app/json/single_include -I /usr/local/include/ -I app/jinja2cpp/thirdparty/nonstd/value-ptr-lite/include currency_converter.cpp -L app/jinja2cpp/install/lib/static -ljinja2cpp -L usr/local/lib/stage/lib/ -lboost_system -lpthread -o currency_converter
  24.  ---> Running in bfb27a00d9c8
  25. currency_converter.cpp:29:10: fatal error: nlohmann/json.hpp: No such file or directory
  26.  #include <nlohmann/json.hpp>
  27.           ^~~~~~~~~~~~~~~~~~~
  28. compilation terminated.
Add Comment
Please, Sign In to add comment