2019-06-06 02:04:24 +02:00
|
|
|
# Build time
|
|
|
|
FROM ubuntu:bionic as build
|
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
2020-03-22 03:31:38 +01:00
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get -y install wget
|
2019-06-06 02:04:24 +02:00
|
|
|
RUN mkdir -p /tmp/cmake
|
|
|
|
WORKDIR /tmp/cmake
|
2020-03-22 03:31:38 +01:00
|
|
|
RUN wget https://github.com/Kitware/CMake/releases/download/v3.14.0/cmake-3.14.0-Linux-x86_64.tar.gz
|
2019-06-06 02:04:24 +02:00
|
|
|
RUN tar zxf cmake-3.14.0-Linux-x86_64.tar.gz
|
|
|
|
|
2020-03-22 03:31:38 +01:00
|
|
|
RUN apt-get -y install g++
|
2019-06-06 02:04:24 +02:00
|
|
|
RUN apt-get -y install libssl-dev
|
|
|
|
RUN apt-get -y install libz-dev
|
|
|
|
RUN apt-get -y install make
|
|
|
|
RUN apt-get -y install python
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
ARG CMAKE_BIN_PATH=/tmp/cmake/cmake-3.14.0-Linux-x86_64/bin
|
|
|
|
ENV PATH="${CMAKE_BIN_PATH}:${PATH}"
|
|
|
|
|
|
|
|
RUN ["make", "ws"]
|