Changed the requirements so that things aren't statically built to fix an issue with tor gencert. TODO Revisit some day

This commit is contained in:
AntiTree 2016-07-28 21:33:54 -04:00
parent 20d02fd326
commit 44ad9e563e
1 changed files with 2 additions and 2 deletions

View File

@ -37,10 +37,10 @@ ENV TERM=xterm \
# Install build dependencies
RUN apt-get update && \
build_temps="build-essential automake" && \
build_temps="libssl-dev zlib1g-dev libevent-dev ca-certificates\
build_deps="libssl-dev zlib1g-dev libevent-dev ca-certificates\
dh-apparmor libseccomp-dev dh-systemd \
git" && \
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install $build_deps \
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install $build_deps $build_temps \
init-system-helpers \
pwgen && \
mkdir /src && \