blob: 1dc901fe20dc234e633a74e3994498e462a1455d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
version: 2
jobs:
build:
branches:
only:
- master
working_directory: /app
docker:
- image: docker:17.05.0-ce-git
steps:
- checkout
- setup_remote_docker:
reusable: true
- run:
name: Build Docker image
command: |
TAG="0.1.${CIRCLE_BUILD_NUM}"
docker build --build-arg GIT_TOKEN="${GIT_TOKEN}" -t clarkzjw/blog.jinwei.me:$TAG .
|