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
This commit is contained in:
Ramtin Seraj 2017-05-17 09:58:06 -07:00 committed by Facebook Github Bot
parent 39cb76024b
commit 9b9f837e94

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
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