mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-02-25 15:27:26 +08:00
19 lines
501 B
Bash
Executable file
19 lines
501 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Builds base images used to build extra flavours of Livebook images
|
|
|
|
set -ex
|
|
cd "$(dirname "$0")/.."
|
|
|
|
elixir="1.15.0-rc.1"
|
|
erlang="25.3.2"
|
|
ubuntu="focal-20230126"
|
|
|
|
docker buildx build --push --platform linux/amd64,linux/arm64 \
|
|
-t ghcr.io/livebook-dev/utils:elixir-cuda11.8 \
|
|
--build-arg ELIXIR_VERSION=$elixir \
|
|
--build-arg ERLANG_VERSION=$erlang \
|
|
--build-arg UBUNTU_VERSION=$ubuntu \
|
|
--build-arg CUDA_VERSION=11.8.0 \
|
|
-f docker/base/elixir-cuda.dockerfile \
|
|
docker/base
|