cppjieba/Dockerfile
2015-02-11 17:11:37 +08:00

12 lines
303 B
Docker

FROM ubuntu:14.04
MAINTAINER yanyiwu <i@yanyiwu.com>
RUN apt-get update
RUN apt-get install -y g++ cmake git
RUN git clone https://github.com/yanyiwu/cppjieba.git
RUN mkdir cppjieba/build
WORKDIR /cppjieba/build
RUN cmake ..
RUN make
EXPOSE 11200
CMD ["./bin/cjserver", "../test/testdata/server.conf"]