duda.dockerfile 343 B

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