From 1e59ab9877be9dca5dea02f04f9404e6eb70edb2 Mon Sep 17 00:00:00 2001 From: Joe McParland Date: Wed, 10 Apr 2019 01:51:38 -0400 Subject: [PATCH] Moved package "python-dev" from the apk virtual block to the apk block above it. python-dev provides libpython2.7.so ; this eliminates a runtime error on initialization ("docker run"). --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9fc01b8..226417c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,13 +31,13 @@ RUN apk --update add \ openssl \ py-cryptography \ py-virtualenv \ + python-dev \ ca-certificates RUN apk --update add --virtual build-deps \ build-base \ git \ libev-dev \ openssl-dev \ - python-dev \ wget \ && virtualenv /app/ve \ && /app/ve/bin/pip install -U pip \