From 55df2ac429708451ff480dc87bbf3dd9cf3f9786 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 1 May 2017 11:41:20 -0400 Subject: [PATCH] maybe this is a good way to get the build deps --- Dockerfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0bffba9..d1709b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,15 +29,14 @@ RUN apt-get --quiet update && \ rm -rf /var/lib/apt/lists/* RUN apt-get --quiet update && apt-get --quiet install -y \ - gcc \ - python-dev \ - libffi-dev \ - openssl \ - libssl-dev \ - \ python-virtualenv \ && rm -rf /var/lib/apt/lists/* +RUN apt-get --quiet update && apt-get --quiet build-dep -y \ + python-nacl \ + python-openssl \ +&& rm -rf /var/lib/apt/lists/* + # Create a virtualenv into which to install magicwormhole in to. RUN virtualenv /app/env