Skip to content
This repository has been archived by the owner on Dec 23, 2020. It is now read-only.

Commit

Permalink
rename ie5 -> ie5.5 for clarity, build all browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Sep 22, 2015
1 parent cc148ff commit 0905711
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ def init_container():
tag = 'netcapsule/mosaic'
elif browser == 'ie4':
tag = 'netcapsule/ie4'
elif browser == 'ie5':
tag = 'netcapsule/ie5'
elif browser == 'ie5' or browser == 'ie55':
tag = 'netcapsule/ie5.5'
elif browser == 'firefox':
tag = 'netcapsule/firefox'
else:
Expand Down
13 changes: 9 additions & 4 deletions browsers/build-browsers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@ DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )

set -e

docker build -t netcapsule/base-browser $DIR/base-browser
docker build -t netcapsule/netscape $DIR/netscape
docker build -t netcapsule/firefox $DIR/firefox
docker build -t netcapsule/mosaic $DIR/mosaic
for dir in $DIR/*/
do
dir=${dir%*/}
name=`basename $dir`

echo "docker build -t netcapsule/$name $dir"
docker build -t netcapsule/$name $dir
done


File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0905711

Please sign in to comment.