diff options
author | Lain Soykaf <lain@lain.com> | 2024-05-20 13:12:12 +0400 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2024-05-20 13:12:12 +0400 |
commit | 226874c9d603be72699d5aa5434616efffe3f239 (patch) | |
tree | cec329a49492e5d3fc08913a505ca5cd6060d3b2 /ci | |
parent | ad26b6d593d83ddb539a5c61ee9f639f7b40531e (diff) | |
download | pleroma-226874c9d603be72699d5aa5434616efffe3f239.tar.gz pleroma-226874c9d603be72699d5aa5434616efffe3f239.zip |
CI: Add new builders for base images
Diffstat (limited to 'ci')
-rw-r--r-- | ci/elixir-1.13/Dockerfile | 8 | ||||
-rwxr-xr-x | ci/elixir-1.13/build_and_push.sh | 1 | ||||
-rwxr-xr-x | ci/elixir-1.15-otp25/build_and_push.sh | 2 |
3 files changed, 10 insertions, 1 deletions
diff --git a/ci/elixir-1.13/Dockerfile b/ci/elixir-1.13/Dockerfile new file mode 100644 index 000000000..b8bceb3d9 --- /dev/null +++ b/ci/elixir-1.13/Dockerfile @@ -0,0 +1,8 @@ +FROM elixir:1.13.4-otp-24 + +# Single RUN statement, otherwise intermediate images are created +# https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#run +RUN apt-get update &&\ + apt-get install -y libmagic-dev cmake libimage-exiftool-perl ffmpeg &&\ + mix local.hex --force &&\ + mix local.rebar --force diff --git a/ci/elixir-1.13/build_and_push.sh b/ci/elixir-1.13/build_and_push.sh new file mode 100755 index 000000000..53af4245f --- /dev/null +++ b/ci/elixir-1.13/build_and_push.sh @@ -0,0 +1 @@ +docker buildx build --platform linux/amd64,linux/arm64 -t git.pleroma.social:5050/pleroma/pleroma/ci-base:elixir-1.13-otp24 --push . diff --git a/ci/elixir-1.15-otp25/build_and_push.sh b/ci/elixir-1.15-otp25/build_and_push.sh index 06fe74f34..a28e0d33c 100755 --- a/ci/elixir-1.15-otp25/build_and_push.sh +++ b/ci/elixir-1.15-otp25/build_and_push.sh @@ -1 +1 @@ -docker buildx build --platform linux/amd64 -t git.pleroma.social:5050/pleroma/pleroma/ci-base:elixir-1.15-otp25 --push . +docker buildx build --platform linux/amd64,linux/arm64 -t git.pleroma.social:5050/pleroma/pleroma/ci-base:elixir-1.15-otp25 --push . |