From aec2334f154e92ae9f2ba37a002fe223ac67a108 Mon Sep 17 00:00:00 2001 From: jowj Date: Tue, 21 Jan 2020 16:53:28 -0600 Subject: [PATCH] Add py-cryptography package to deal with alpine's idiot behavior - fuck alpine so much. --- dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dockerfile b/dockerfile index 301dbf3..4b24ddd 100644 --- a/dockerfile +++ b/dockerfile @@ -1,12 +1,13 @@ -FROM alpine:3.7 +FROM alpine:3.11 LABEL maintainer "me@jowj.net" RUN apk update RUN apk add \ - python3 \ - python-dev + python3 \ + python-dev \ + py-cryptography RUN python3 -m pip install --upgrade pip \ && pip3 install requests \