File tree 5 files changed +11
-5
lines changed
5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ All notable changes to this project will be documented in this file.
11
11
### Changed
12
12
13
13
14
+ ## [ 0.3.17] - 2016-07-14
15
+ ### Fixed
16
+ - @michaelshobbs set unprivileged user/group to same name and test with this user
17
+
18
+
14
19
## [ 0.3.16] - 2016-07-14
15
20
### Added
16
21
- @michaelshobbs add named unprivileged user
@@ -242,7 +247,8 @@ All notable changes to this project will be documented in this file.
242
247
- User for ` buildpack-build ` is ` $USER ` or randomized
243
248
- User for ` procfile-exec ` is ` $USER ` or detected from ` /app `
244
249
245
- [ unreleased ] : https://github.com/gliderlabs/herokuish/compare/v0.3.16...HEAD
250
+ [ unreleased ] : https://github.com/gliderlabs/herokuish/compare/v0.3.17...HEAD
251
+ [ 0.3.17 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.16...v0.3.17
246
252
[ 0.3.16 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.15...v0.3.16
247
253
[ 0.3.15 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.14...v0.3.15
248
254
[ 0.3.14 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.13...v0.3.14
Original file line number Diff line number Diff line change 1
1
FROM heroku/cedar:14
2
- RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.16 /herokuish_0.3.16_linux_x86_64 .tgz \
2
+ RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.17 /herokuish_0.3.17_linux_x86_64 .tgz \
3
3
--silent -L | tar -xzC /bin
4
4
RUN /bin/herokuish buildpack install \
5
5
&& ln -s /bin/herokuish /build \
Original file line number Diff line number Diff line change 1
1
NAME = herokuish
2
2
HARDWARE = $(shell uname -m)
3
- VERSION ?= 0.3.16
3
+ VERSION ?= 0.3.17
4
4
IMAGE_NAME ?= $(NAME )
5
5
BUILD_TAG ?= dev
6
6
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ run-test() {
20
20
cd - & > /dev/null
21
21
[[ " $CI " ]] || rmflag=" --rm"
22
22
[[ " $TRACE " ]] && debug_flag=" -e TRACE=true"
23
- docker run $rmflag $debug_flag -v " $app_path :/tmp/app" herokuish:dev /bin/herokuish test / " $app "
23
+ docker run $rmflag $debug_flag --env=USER=herokuishuser - v " $app_path :/tmp/app" herokuish:dev /bin/herokuish test / " $app "
24
24
}
25
25
26
26
main () {
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- addgroup --quiet --gid " 32767" " herokuishgroup " && \
3
+ addgroup --quiet --gid " 32767" " herokuishuser " && \
4
4
adduser \
5
5
--shell /bin/bash \
6
6
--disabled-password \
You can’t perform that action at this time.
0 commit comments