From 924a12808e1d73a5e0743e995fbdfe4198f1f187 Mon Sep 17 00:00:00 2001 From: Ryan Carroll Date: Wed, 8 Jan 2020 10:22:48 -0500 Subject: [PATCH] adding additional trusted host --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f9958cb..ea76a0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3 WORKDIR /usr/src/app COPY requirements.txt ./ -RUN pip install --trusted-host pypi.org --no-cache-dir -r requirements.txt +RUN pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org --no-cache-dir -r requirements.txt LABEL org.opencontainers.image.title="cloud-native-demo"