docker-sync 0.1.2

Minimalistic, synchronous, read-only client for local Docker socket
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rustlang/rust:nightly

RUN set -ex;                                                                    \
    apt-get update;                                                             \
    apt-get install -q -y --no-install-recommends                               \
        apt-transport-https                                                     \
        sudo                                                                    \
        git                                                                     \
        vim                                                                     \
        curl                                                                    \
	build-essential								\
        libssl1.0-dev                                                           \
        ;                                                                       \
    apt-get autoremove -q -y;                                                   \
    apt-get autoclean -q -y