aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Xithrius <[email protected]>2021-01-19 08:56:07 -0800
committerGravatar GitHub <[email protected]>2021-01-19 08:56:07 -0800
commite3dc8b77fe69d9aca27cc3dfe746f14b461ea53a (patch)
tree9ba5381369d44499324f3acba81c0f7291521725 /Dockerfile
parentMove not allowed to run message to constant and match comment with code (diff)
parentMerge pull request #1368 from python-discord/mbaruh/filters (diff)
Merge branch 'master' into help-disabled-command
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 10 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 06a538b2a..5d0380b44 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,10 +1,19 @@
FROM python:3.8-slim
+# Define Git SHA build argument
+ARG git_sha="development"
+
# Set pip to have cleaner logs and no saved cache
ENV PIP_NO_CACHE_DIR=false \
PIPENV_HIDE_EMOJIS=1 \
PIPENV_IGNORE_VIRTUALENVS=1 \
- PIPENV_NOSPIN=1
+ PIPENV_NOSPIN=1 \
+ GIT_SHA=$git_sha
+
+RUN apt-get -y update \
+ && apt-get install -y \
+ git \
+ && rm -rf /var/lib/apt/lists/*
# Install pipenv
RUN pip install -U pipenv