duda.dockerfile 315 B

12345678910111213
  1. FROM python:2.7
  2. COPY ./ ./
  3. # Get v0.31 (no official releases that work 2015-06-25)
  4. RUN git clone https://github.com/monkey/dudac.git
  5. RUN cd dudac && git checkout 7c3d5b03b09fb4cb5f5e338fff72df2e25e95ef0 && \
  6. ./dudac -r && \
  7. ./dudac -s
  8. EXPOSE 2001
  9. CMD ["./dudac/dudac", "-w", "webservice", "-p", "2001"]