From c7f5532854e0e81d7617c8670ad9bd122a494c7e Mon Sep 17 00:00:00 2001 From: Casey Faist <caseylfaist@gmail.com> Date: Wed, 1 Aug 2018 16:04:24 -0500 Subject: [PATCH] v 138 changelog --- CHANGELOG.md | 4 ++++ Dockerfile.heroku-18 | 13 +++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 Dockerfile.heroku-18 diff --git a/CHANGELOG.md b/CHANGELOG.md index c635b506..63a40c42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Python Buildpack Changelog +# 138 + +Use stack image SQLite3 instead of vendoring + # 137 Prevent 3.7.0 from appearing as unsupported in buildpack messaging. diff --git a/Dockerfile.heroku-18 b/Dockerfile.heroku-18 new file mode 100644 index 00000000..d34e948c --- /dev/null +++ b/Dockerfile.heroku-18 @@ -0,0 +1,13 @@ +FROM heroku/heroku:18-build + +WORKDIR /app +ENV WORKSPACE_DIR="/app/builds" \ + S3_BUCKET="lang-python" \ + S3_PREFIX="heroku-18/" + +RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/* + +COPY requirements.txt /app/ +RUN pip install --disable-pip-version-check --no-cache-dir -r /app/requirements.txt + +COPY . /app -- GitLab