]> prime8.dev >> repos - ttyd.git/commitdiff
Dockerfile: add -DCMAKE_BUILD_TYPE=RELEASE
authorShuanglei Tao <tsl0922@gmail.com>
Sat, 18 Aug 2018 01:39:06 +0000 (09:39 +0800)
committerShuanglei Tao <tsl0922@gmail.com>
Sat, 18 Aug 2018 01:39:06 +0000 (09:39 +0800)
Dockerfile
Dockerfile-static

index 7fbafe19041f720bf13479d2e0da5b44330a9c97..73b4e3aefc3edba9ef2f4bdc5c93df411e520eb9 100644 (file)
@@ -18,7 +18,7 @@ RUN apt-get update \
       vim-common \
     && git clone --depth=1 https://github.com/tsl0922/ttyd.git /tmp/ttyd \
     && cd /tmp/ttyd && mkdir build && cd build \
-    && cmake .. \
+    && cmake -DCMAKE_BUILD_TYPE=RELEASE .. \
     && make \
     && make install \
     && apt-get remove -y --purge \
index deb12c2a223285f5447f0f64f628003dfdbae1f4..f46f4e4ca4d7b607d2e20a6c5213298409c457ec 100644 (file)
@@ -18,4 +18,4 @@ RUN curl -sLo- https://s3.amazonaws.com/json-c_releases/releases/json-c-0.12.1.t
 
 RUN git clone --depth=1 https://github.com/tsl0922/ttyd.git \
  && cd ttyd && sed -i '5s;^;\nSET(CMAKE_FIND_LIBRARY_SUFFIXES ".a")\nSET(CMAKE_EXE_LINKER_FLAGS "-static")\n;' CMakeLists.txt \
- && cmake . && make install && cd .. && rm -rf ttyd
+ && cmake -DCMAKE_BUILD_TYPE=RELEASE . && make install && cd .. && rm -rf ttyd