We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fe4f91 commit c7f5532Copy full SHA for c7f5532
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Python Buildpack Changelog
2
3
+# 138
4
+
5
+Use stack image SQLite3 instead of vendoring
6
7
# 137
8
9
Prevent 3.7.0 from appearing as unsupported in buildpack messaging.
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/*
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