Skip to content

Commit ee246a4

Browse files
author
Manuel Perez Belmonte
committed
0.5.0-alpha1 release
1 parent 1f5ee98 commit ee246a4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
FROM openjdk:8-jre-alpine
22
EXPOSE 8888
33

4+
LABEL version="0.5.0-alpha1"
5+
46
ADD conf/ece.conf ece.conf
57
ADD target/elastest-cost-engine-0.0.2-SNAPSHOT.jar ece.jar
68
ADD run.sh run.sh
79

810
RUN chmod +x run.sh
911

10-
CMD ["/bin/ash", "run.sh"]
12+
CMD ["/bin/ash", "run.sh"]

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ node('docker') {
2020

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

2525
stage "Run image"
2626
myimage.run()

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ services:
1010
- POSTGRES_PASSWORD=elastestpassword
1111
- POSTGRES_DB=ece
1212
ece:
13-
image: elastest/ece
13+
image: elastest/ece:0.5.0-alpha1
1414
ports:
1515
- 8888:8888

0 commit comments

Comments
 (0)