CodeCommitsIssuesPull requestsActionsInsightsSecurity
4cc0d0ca5d0ef0761c5def7a197c62c0257ac271

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

docker/builder/Makefile

12lines · modecode

1build: image
2 mkdir -p $(HOME)/.ccache
3 docker run --network=host --rm --workdir /server --volume $(realpath ../..):/server --cap-add=SYS_PTRACE --mount=type=bind,source=$(HOME)/.ccache,destination=/ccache -e CCACHE_DIR=/ccache -it yandex/clickhouse-builder
4
5pull:
6 docker pull yandex/clickhouse-builder
7
8image:
9 docker build --network=host -t yandex/clickhouse-builder .
10
11image_push:
12 docker push yandex/clickhouse-builder