v 138 changelog

This commit is contained in:
Casey Faist
2018-08-01 16:04:24 -05:00
parent 0fe4f91395
commit c7f5532854
2 changed files with 17 additions and 0 deletions
+4
View File
@@ -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.
+13
View File
@@ -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