FROM julia:latest
WORKDIR /code
ADD . /code
RUN julia -e "import Pkg;Pkg.add(path=\"/code\")"
ENTRYPOINT julia -e "using TelegramMarkov;run_server()"