Skip to content

Commit ffc7359

Browse files
authored
Merge pull request #862 from heroku/pin-dockerfile
Pin docker build env
2 parents fe6a81d + 7a313c5 commit ffc7359

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
# Master
44

5-
- Unpin Heroku-18 binary build deps
65
- Typo fixes
76

87
--------------------------------------------------------------------------------

builds/heroku-18.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM heroku/heroku:18-build
1+
FROM heroku/heroku:18-build.v16
22

33
WORKDIR /app
44
ENV WORKSPACE_DIR="/app/builds" \
@@ -7,7 +7,7 @@ ENV WORKSPACE_DIR="/app/builds" \
77
DEBIAN_FRONTEND=noninteractive \
88
STACK="heroku-18"
99

10-
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
10+
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/*
1111

1212
COPY requirements.txt /app/
1313
RUN pip install --disable-pip-version-check --no-cache-dir -r /app/requirements.txt

0 commit comments

Comments
 (0)