File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 6
6
docker build --rm -t $(IMAGE_NAME ) .
7
7
8
8
test : image
9
- docker run --rm $(IMAGE_NAME ) sh -c " cd /usr/src/app && bundle install --with=test && bundle exec rake"
9
+ docker run --rm --tty $(IMAGE_NAME ) sh -c " cd /usr/src/app && bundle install --with=test && bundle exec rake"
10
10
11
11
docs : image
12
- docker run --rm \
12
+ docker run --rm --tty \
13
13
--user root \
14
14
--workdir /usr/src/app \
15
15
--volume $(PWD ) :/usr/src/app \
16
16
$(IMAGE_NAME ) sh -c " apk --update add git && bundle install --with=test && bundle exec rake docs:scrape"
17
17
18
18
bundle :
19
- docker run --rm \
19
+ docker run --rm --tty \
20
20
--entrypoint /bin/sh \
21
21
--volume $(PWD ) :/usr/src/app \
22
22
$(IMAGE_NAME ) -c " cd /usr/src/app && bundle $( BUNDLE_ARGS) "
You can’t perform that action at this time.
0 commit comments