File tree 4 files changed +8
-5
lines changed
4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## [ 0.7.6] ( https://github.com/gliderlabs/herokuish/compare/v0.7.5...v0.7.6 ) - 2024-03-28
6
+
7
+ - #1171 @josegonzalez : Use a run mount to add build dependencies
8
+
5
9
## [ 0.7.5] ( https://github.com/gliderlabs/herokuish/compare/v0.7.4...v0.7.5 ) - 2024-03-28
6
10
7
11
- #1148 @dokku-bot : Update go to version v189
Original file line number Diff line number Diff line change @@ -16,8 +16,7 @@ ARG TARGETARCH
16
16
ADD https://raw.githubusercontent.com/heroku/stack-images/main/heroku-${STACK_VERSION}/setup.sh /tmp/setup-01.sh
17
17
ADD https://raw.githubusercontent.com/heroku/stack-images/main/heroku-${STACK_VERSION}-build/setup.sh /tmp/setup-02.sh
18
18
ADD bin/setup.sh /tmp/setup.sh
19
- ADD build-deps/${STACK_VERSION} /build
20
- RUN STACK_VERSION=${STACK_VERSION} TARGETARCH=${TARGETARCH} /tmp/setup.sh && \
19
+ RUN --mount=source=build-deps/${STACK_VERSION},target=/build STACK_VERSION=${STACK_VERSION} TARGETARCH=${TARGETARCH} /tmp/setup.sh && \
21
20
rm -rf /tmp/setup.sh
22
21
23
22
ENV STACK=heroku-$STACK_VERSION
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ REPOSITORY = herokuish
4
4
DESCRIPTION = 'Herokuish uses Docker and Buildpacks to build applications like Heroku'
5
5
HARDWARE = $(shell uname -m)
6
6
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
7
- VERSION ?= 0.7.5
7
+ VERSION ?= 0.7.6
8
8
IMAGE_NAME ?= $(NAME )
9
9
BUILD_TAG ?= dev
10
10
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Build Status] ( https://github.com/gliderlabs/herokuish/workflows/CI/badge.svg )] ( https://github.com/gliderlabs/herokuish/actions?query=workflow%3ACI )
4
4
[ ![ IRC Channel] ( https://img.shields.io/badge/irc-%23gliderlabs-blue.svg )] ( https://kiwiirc.com/client/irc.freenode.net/#gliderlabs )
5
- [ ![ Docker Hub] ( https://img.shields.io/badge/docker%20hub-v0.7.5 -blue )] ( https://hub.docker.com/r/gliderlabs/herokuish )
5
+ [ ![ Docker Hub] ( https://img.shields.io/badge/docker%20hub-v0.7.6 -blue )] ( https://hub.docker.com/r/gliderlabs/herokuish )
6
6
7
7
A command line tool for emulating Heroku build and runtime tasks in containers.
8
8
@@ -19,7 +19,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
19
19
For example, you can do this directly in your Dockerfiles installing into ` /bin ` as one step:
20
20
21
21
``` shell
22
- RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.7.5 /herokuish_0.7.5_linux_x86_64 .tgz \
22
+ RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.7.6 /herokuish_0.7.6_linux_x86_64 .tgz \
23
23
| tar -xzC /bin
24
24
```
25
25
You can’t perform that action at this time.
0 commit comments