Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 797 Bytes

DEVELOPMENT.md

File metadata and controls

31 lines (22 loc) · 797 Bytes

Development guide

How to build

Release version

Debian:

docker build -t cubejs/cube:latest -f latest.Dockerfile .
docker buildx build --platform linux/amd64 -t cubejs/cube:latest -f latest.Dockerfile .

Alpine

docker build -t cubejs/cube:alpine -f latest-alpine.Dockerfile .
docker buildx build --platform linux/amd64 -t cubejs/cube:alpine -f latest-alpine.Dockerfile .

Not released, development (from cubejs-docker directory)

docker build -t cubejs/cube:dev -f dev.Dockerfile ../../
docker buildx build --platform linux/amd64 -t cubejs/cube:dev -f dev.Dockerfile ../../
docker build -t cubejs/cube:dev-alpine -f dev-alpine.Dockerfile ../../
docker buildx build --platform linux/amd64 -t cubejs/cube:dev-alpine -f dev-alpine.Dockerfile ../../