Skip to content

Commit c7f5532

Browse files
committed
v 138 changelog
1 parent 0fe4f91 commit c7f5532

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Python Buildpack Changelog
22

3+
# 138
4+
5+
Use stack image SQLite3 instead of vendoring
6+
37
# 137
48

59
Prevent 3.7.0 from appearing as unsupported in buildpack messaging.

Dockerfile.heroku-18

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM heroku/heroku:18-build
2+
3+
WORKDIR /app
4+
ENV WORKSPACE_DIR="/app/builds" \
5+
S3_BUCKET="lang-python" \
6+
S3_PREFIX="heroku-18/"
7+
8+
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
9+
10+
COPY requirements.txt /app/
11+
RUN pip install --disable-pip-version-check --no-cache-dir -r /app/requirements.txt
12+
13+
COPY . /app

0 commit comments

Comments
 (0)