diff options
author | 2019-09-20 11:19:43 +1000 | |
---|---|---|
committer | 2019-09-20 11:19:43 +1000 | |
commit | a1d6ba19e4b88ead216afe6fe71641489bf5bc63 (patch) | |
tree | 03efede9562ffc8e81fb37154d243d474f6ac37c /docker | |
parent | Add PIP and PIPENV Environmental Variables to production Dockerfile (diff) |
Remove EXTRAS ARG as pip extras isn't used anymore.
Diffstat (limited to 'docker')
-rw-r--r-- | docker/app/Dockerfile | 1 | ||||
-rw-r--r-- | docker/app/local.Dockerfile | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/docker/app/Dockerfile b/docker/app/Dockerfile index a17e034c..15b1f77b 100644 --- a/docker/app/Dockerfile +++ b/docker/app/Dockerfile @@ -2,7 +2,6 @@ FROM bitnami/python:3.7-prod # I have no idea what this does. STOPSIGNAL SIGQUIT -ARG EXTRAS=deploy ENV PIP_NO_CACHE_DIR=false \ PIPENV_HIDE_EMOJIS=1 \ diff --git a/docker/app/local.Dockerfile b/docker/app/local.Dockerfile index 1a088279..124dab95 100644 --- a/docker/app/local.Dockerfile +++ b/docker/app/local.Dockerfile @@ -1,7 +1,6 @@ FROM bitnami/python:3.7-prod STOPSIGNAL SIGQUIT -ARG EXTRAS=deploy ENV PIP_NO_CACHE_DIR=false \ PIPENV_HIDE_EMOJIS=1 \ |