aboutsummaryrefslogtreecommitdiff
blob: 6f5e061d0428c09764340d0b2a2fe19680585e87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: 2
jobs:
  build:
    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 .
Powered by cgit v1.2.3 (git 2.41.0)