From 1899644bf20c96a8db13e01070884431818d9b33 Mon Sep 17 00:00:00 2001 From: jowj Date: Sun, 7 Oct 2018 16:55:02 -0500 Subject: [PATCH] Update dockerfile to specifically use pip3. --- dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dockerfile b/dockerfile index 5a5da9f..e5ce42d 100644 --- a/dockerfile +++ b/dockerfile @@ -7,9 +7,8 @@ RUN apk add \ python3 \ python-dev -RUN python3 -m ensurepip \ - && python3 -m pip install --upgrade pip \ - && python3 -m pip install requests +RUN python3 -m pip install --upgrade pip \ + && pip3 install requests COPY ./ ./