File tree Expand file tree Collapse file tree 5 files changed +15
-5
lines changed Expand file tree Collapse file tree 5 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,13 @@ jobs:
4040 - run : |
4141 echo "$DOCKERHUB_PASSWORD" | docker login --username "$DOCKERHUB_USERNAME" --password-stdin
4242 - run : |
43- docker image build -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:$CIRCLE_TAG-18 -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest-18 --build-arg STACK_VERSION=18 .
43+ docker image build -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:$CIRCLE_TAG-18 -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest-18 -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest - -build-arg STACK_VERSION=18 .
4444 - run : |
4545 docker image build -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:$CIRCLE_TAG-20 -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest-20 --build-arg STACK_VERSION=20 .
4646 - run : |
4747 docker image push $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:$CIRCLE_TAG-18
4848 docker image push $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest-18
49+ docker image push $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest
4950 - run : |
5051 docker image push $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:$CIRCLE_TAG-20
5152 docker image push $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest-20
Original file line number Diff line number Diff line change 11# Change Log
22All notable changes to this project will be documented in this file.
33
4+ ## [ 0.5.33] ( https://github.com/gliderlabs/herokuish/compare/v0.5.32...v0.5.33 ) - 2021-12-01
5+
6+ ### Changed
7+
8+ - @josegonzalez Update ruby to version v232 #725
9+ - @josegonzalez Update python to version v204 #727
10+ - @josegonzalez Update php to version v201 #728
11+ - @josegonzalez Update go to version v157 #729
12+
413## [ 0.5.32] ( https://github.com/gliderlabs/herokuish/compare/v0.5.31...v0.5.32 ) - 2021-11-06
514
615### Changed
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ RUN apt-get update -qq \
1717 && mv /etc/ImageMagick-6/policy.xml.custom /etc/ImageMagick-6/policy.xml \
1818 && apt-get clean \
1919 && rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* /var/tmp/*
20- RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.5.32 /herokuish_0.5.32_linux_x86_64 .tgz" \
20+ RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.5.33 /herokuish_0.5.33_linux_x86_64 .tgz" \
2121 --silent -L | tar -xzC /bin
2222RUN /bin/herokuish buildpack install \
2323 && ln -s /bin/herokuish /build \
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ NAME = herokuish
22DESCRIPTION = 'Herokuish uses Docker and Buildpacks to build applications like Heroku'
33HARDWARE = $(shell uname -m)
44SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
5- VERSION ?= 0.5.32
5+ VERSION ?= 0.5.33
66IMAGE_NAME ?= $(NAME )
77BUILD_TAG ?= dev
88PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish
Original file line number Diff line number Diff line change 22
33[ ![ Build Status] ( https://github.com/gliderlabs/herokuish/workflows/CI/badge.svg )] ( https://github.com/gliderlabs/herokuish/actions?query=workflow%3ACI )
44[ ![ 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.5.32 -blue )] ( https://hub.docker.com/r/gliderlabs/herokuish )
5+ [ ![ Docker Hub] ( https://img.shields.io/badge/docker%20hub-v0.5.33 -blue )] ( https://hub.docker.com/r/gliderlabs/herokuish )
66
77A command line tool for emulating Heroku build and runtime tasks in containers.
88
@@ -19,7 +19,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
1919For example, you can do this directly in your Dockerfiles installing into ` /bin ` as one step:
2020
2121``` shell
22- RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.5.32 /herokuish_0.5.32_linux_x86_64 .tgz \
22+ RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.5.33 /herokuish_0.5.33_linux_x86_64 .tgz \
2323 | tar -xzC /bin
2424```
2525
You can’t perform that action at this time.
0 commit comments