diff options
author | 2019-09-18 06:01:53 +1000 | |
---|---|---|
committer | 2019-09-18 06:01:53 +1000 | |
commit | 1a89e250f1969ee5b4534c59bd022161ebc2c90c (patch) | |
tree | 08abe748b73717f7fa385f28a0b95259e6240a0e | |
parent | Add PIP and PIPENV Environmental Variables (diff) |
Add PIP and PIPENV Environmental Variables to production Dockerfile
-rw-r--r-- | docker/app/Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docker/app/Dockerfile b/docker/app/Dockerfile index 8378ceb9..a17e034c 100644 --- a/docker/app/Dockerfile +++ b/docker/app/Dockerfile @@ -4,6 +4,10 @@ FROM bitnami/python:3.7-prod STOPSIGNAL SIGQUIT ARG EXTRAS=deploy +ENV PIP_NO_CACHE_DIR=false \ + PIPENV_HIDE_EMOJIS=1 \ + PIPENV_NOSPIN=1 + # Create a user. RUN useradd --system --shell /bin/false --uid 1500 pysite |