ソースを参照

add new build scripts & drone ci script

master
soekarmana 5年前
コミット
ee483a1033
2個のファイルの変更24行の追加0行の削除
  1. +10
    -0
      .drone.yml
  2. +14
    -0
      build-image.sh

+ 10
- 0
.drone.yml ファイルの表示

@ -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 ファイルの表示

@ -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

読み込み中…
キャンセル
保存