mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
Merge pull request #862 from heroku/pin-dockerfile
Pin docker build env
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
|
||||
# Master
|
||||
|
||||
- Unpin Heroku-18 binary build deps
|
||||
- Typo fixes
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM heroku/heroku:18-build
|
||||
FROM heroku/heroku:18-build.v16
|
||||
|
||||
WORKDIR /app
|
||||
ENV WORKSPACE_DIR="/app/builds" \
|
||||
@@ -7,7 +7,7 @@ ENV WORKSPACE_DIR="/app/builds" \
|
||||
DEBIAN_FRONTEND=noninteractive \
|
||||
STACK="heroku-18"
|
||||
|
||||
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
|
||||
RUN apt-get update && apt-get install --no-install-recommends -y python-pip-whl=9.0.1-2 python-pip=9.0.1-2 python-setuptools python-wheel && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY requirements.txt /app/
|
||||
RUN pip install --disable-pip-version-check --no-cache-dir -r /app/requirements.txt
|
||||
|
||||
Reference in New Issue
Block a user