From 1a6f65854580ce91f260fc617050b23afea47792 Mon Sep 17 00:00:00 2001 From: Andrew Watson Date: Mon, 8 May 2017 14:22:58 -0400 Subject: [PATCH] Added COPY for requirements-app.txt --- 2.7/onbuild/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/2.7/onbuild/Dockerfile b/2.7/onbuild/Dockerfile index 304d79a05..bbde8f07b 100644 --- a/2.7/onbuild/Dockerfile +++ b/2.7/onbuild/Dockerfile @@ -4,6 +4,7 @@ RUN mkdir -p /usr/src/app WORKDIR /usr/src/app ONBUILD COPY requirements.txt /usr/src/app/ +ONBUILD COPY requirements-app.txt /usr/src/app ONBUILD RUN pip install --no-cache-dir -r requirements.txt ONBUILD COPY . /usr/src/app