duckling/Dockerfile
Ramtin Seraj 9b9f837e94 Adding dockerfile for the http server
Summary: Closes https://github.com/facebookincubator/duckling/pull/20

Differential Revision: D5078813

Pulled By: patapizza

fbshipit-source-id: a8f95ff
2017-05-17 10:19:44 -07:00

16 lines
239 B
Docker

FROM haskell:8
RUN git clone https://github.com/facebookincubator/duckling.git
RUN mkdir /log
WORKDIR /duckling
RUN apt-get update
RUN apt-get install libpcre3 libpcre3-dev
RUN stack build
ENTRYPOINT stack exec duckling-example-exe