From 6ae8e91482a10accc5019ce52dd930e8f9945c26 Mon Sep 17 00:00:00 2001
From: Nick Anderegg <nick.anderegg@platform.sh>
Date: Tue, 20 Nov 2018 11:12:09 -0500
Subject: [PATCH] Fix pipenv install command and pin pipenv version

---
 .platform.app.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.platform.app.yaml b/.platform.app.yaml
index a6def6c..1be33d3 100644
--- a/.platform.app.yaml
+++ b/.platform.app.yaml
@@ -12,7 +12,7 @@ type: 'python:3.7'
 # The build-time dependencies of the app.
 dependencies:
     python3:
-       pipenv: '*'
+       pipenv: '2018.10.13'
 
 # The relationships of the application with services or other applications.
 #
@@ -53,7 +53,7 @@ hooks:
   # The build hook runs before the application is deployed, and is useful for
   # assembling the codebase.
   build: |
-    pipenv install --system
+    pipenv install --system --deploy
 
     mkdir logs
     python manage.py collectstatic
-- 
GitLab