mirror of
https://github.com/facebook/duckling.git
synced 2024-11-29 01:03:44 +03:00
9b9f837e94
Summary: Closes https://github.com/facebookincubator/duckling/pull/20 Differential Revision: D5078813 Pulled By: patapizza fbshipit-source-id: a8f95ff
16 lines
239 B
Docker
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
|