FROM ubuntu:16.04

RUN mkdir -p /usr/bin
COPY ./.manta/legend /usr/bin/legend
COPY ./.manta/config /etc/legend/config/
RUN ls -al /etc/legend

EXPOSE 8000
ENTRYPOINT ["/usr/bin/legend"]
