Skip to content

Commit

Permalink
create docker-build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
fahmimahmud committed Jul 2, 2020
1 parent 4a5e0a0 commit a1ff010
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 0 additions & 2 deletions v1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
FROM ubuntu:16.04

MAINTAINER [email protected]

ENV JAVA_VERSION openjdk-8-jdk

RUN apt-get update && apt install $JAVA_VERSION git curl wget -y
Expand Down
9 changes: 9 additions & 0 deletions v1/docker-build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

if [ -z "$1" ]
then
TAG=latest
else
TAG=$1
fi
docker build -t kinnaradigitalstudio/kecak-builder:$TAG .

0 comments on commit a1ff010

Please sign in to comment.