DS

Size: a a a
DS
T
DS
DS
A
VM
A
A
DS
AG
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Connection closed by foreign host.
IG
IG
AG
KC
0.0.0.0
VL
AG
0.0.0.0
IG
FROM java:8
RUN apt-get update
RUN apt-get install -y make
# install lein
ENV LEIN_ROOT 1
WORKDIR /bin
RUN wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
RUN chmod a+x lein
# install deps
WORKDIR /
COPY project.clj .
RUN lein deps
RUN rm project.clj
WORKDIR /queryfeed
CMD ["lein", "repl", ":start", ":host", "0.0.0.0", ":port", "12345"]
IG
IG
IG