exocore 0.1.26

Distributed applications framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rust:slim

RUN apt-get update && \
    apt-get install -y build-essential pkg-config libssl-dev && \
    rm -rf /var/lib/apt/lists/*

COPY . /opt/exocore/

RUN cd /opt/exocore && \
    ./tools/install.sh && \
    rm -rf /opt/exocore/ && \
    rm -rf /usr/local/cargo/registry/

WORKDIR /volume
ENTRYPOINT ["/usr/local/cargo/bin/exo"]