2018-11-07 20:45:17 +01:00
|
|
|
FROM debian:stretch
|
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get -y install g++
|
|
|
|
RUN apt-get -y install libssl-dev
|
|
|
|
RUN apt-get -y install gdb
|
|
|
|
RUN apt-get -y install screen
|
|
|
|
RUN apt-get -y install procps
|
|
|
|
RUN apt-get -y install lsof
|
2018-12-10 02:56:20 +01:00
|
|
|
RUN apt-get -y install libz-dev
|
2018-12-15 01:28:11 +01:00
|
|
|
RUN apt-get -y install vim
|
2019-01-02 01:34:05 +01:00
|
|
|
RUN apt-get -y install make
|
|
|
|
RUN apt-get -y install cmake
|
2018-11-07 20:45:17 +01:00
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
2019-01-02 01:34:05 +01:00
|
|
|
#WORKDIR examples/ws_connect
|
|
|
|
#RUN ["sh", "build_linux.sh"]
|
|
|
|
RUN ["make", "test"]
|