IXWebSocket/docker/Dockerfile.debian

20 lines
422 B
Docker
Raw Normal View History

2018-11-07 11:45:17 -08: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
RUN apt-get -y install libz-dev
2018-12-14 16:28:11 -08:00
RUN apt-get -y install vim
2019-01-01 16:34:05 -08:00
RUN apt-get -y install make
RUN apt-get -y install cmake
2018-11-07 11:45:17 -08:00
COPY . .
2019-01-01 17:13:26 -08:00
WORKDIR test
RUN ["sh", "build_linux.sh"]