Skip to content

Commit

Permalink
0.5.0-alpha1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Perez Belmonte committed Oct 5, 2017
1 parent 1f5ee98 commit ee246a4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
FROM openjdk:8-jre-alpine
EXPOSE 8888

LABEL version="0.5.0-alpha1"

ADD conf/ece.conf ece.conf
ADD target/elastest-cost-engine-0.0.2-SNAPSHOT.jar ece.jar
ADD run.sh run.sh

RUN chmod +x run.sh

CMD ["/bin/ash", "run.sh"]
CMD ["/bin/ash", "run.sh"]
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ node('docker') {

stage "Build image - Package"
echo ("Building ECE Image")
def myimage = docker.build 'elastest/ece'
def myimage = docker.build 'elastest/ece:0.5.0-alpha1'

stage "Run image"
myimage.run()
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ services:
- POSTGRES_PASSWORD=elastestpassword
- POSTGRES_DB=ece
ece:
image: elastest/ece
image: elastest/ece:0.5.0-alpha1
ports:
- 8888:8888

0 comments on commit ee246a4

Please sign in to comment.