Browse Source

add new build scripts & drone ci script

master
soekarmana 5 years ago
parent
commit
ee483a1033
2 changed files with 24 additions and 0 deletions
  1. +10
    -0
      .drone.yml
  2. +14
    -0
      build-image.sh

+ 10
- 0
.drone.yml View File

@ -0,0 +1,10 @@
pipeline:
build-docker:
image: docker:18.06.1-ce
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- chmod +x ./build-image.sh
- ./build-image.sh
when:
event: [push]

+ 14
- 0
build-image.sh View File

@ -0,0 +1,14 @@
#!/bin/sh
set -e
set -o xtrace
IMAGE_NAME=warmup_welcome
# clean old images
OLD_IMAGES=$(docker images $IMAGE_NAME -q --no-trunc)
if [ -n "${OLD_IMAGES}" ]; then
docker rmi -f ${OLD_IMAGES};
fi
#Build Images
docker build . -t $IMAGE_NAME

Loading…
Cancel
Save