CodeCommitsIssuesPull requestsActionsInsightsSecurity
b136999f75d5f641269447f2d20de85933bc0eb7

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