From 2a0f28bcfa022f62ae6cf6e35a0764a056a9b6f3 Mon Sep 17 00:00:00 2001 From: Analyser Date: Mon, 7 Aug 2017 15:10:39 +0800 Subject: [PATCH] Add missed package ca-certificates, automake, libmbedtls-dev. fix these errors: - ca-certificates missed fatal: unable to access 'https://github.com/shadowsocks/shadowsocks-libev.git/': Problem with the SSL CA cert (path? access rights?) - automake missed Can't exec "aclocal": No such file or directory at /usr/share/autoconf/Autom4te/FileUtils.pm line 326. autoreconf: failed to run aclocal: No such file or directory - libmbedtls-dev checking for mbedtls_cipher_setup in -lmbedcrypto... no configure: error: mbed TLS libraries not found. --- docker/ubuntu/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/ubuntu/Dockerfile b/docker/ubuntu/Dockerfile index 7dd28637..0ece8cbf 100644 --- a/docker/ubuntu/Dockerfile +++ b/docker/ubuntu/Dockerfile @@ -1,7 +1,9 @@ FROM ubuntu:latest MAINTAINER Sah Lee -ENV DEPENDENCIES git-core gettext build-essential autoconf libtool libssl-dev libpcre3-dev asciidoc xmlto zlib1g-dev libev-dev libudns-dev libsodium-dev +ENV DEPENDENCIES git-core gettext build-essential autoconf libtool libssl-dev libpcre3-dev \ + asciidoc xmlto zlib1g-dev libev-dev libudns-dev libsodium-dev \ + ca-certificates automake libmbedtls-dev ENV BASEDIR /tmp/shadowsocks-libev ENV SERVER_PORT 8338