diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6e0775a8..e7a314da 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,9 +14,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - otp: [22.3.4.14, 23.0.4, 23.1.5.0, 23.2.1.0, 23.2.7.0] + otp: [22.3, 23.3.4] container: - image: erlang:${{ matrix.otp }}-alpine + image: quay.io/travelping/alpine-erlang:${{ matrix.otp }} options: --privileged steps: - name: Prepare diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e9f5deee..0e972ff4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,7 +54,11 @@ check:otp-23.1: check:otp-23.2: <<: *check_otp - image: quay.io/travelping/alpine-erlang:23.3.3 + image: erlang:23.2.7.0-alpine + +check:otp-23.3: + <<: *check_otp + image: quay.io/travelping/alpine-erlang:23.3.4 docker: image: jdrouet/docker-with-buildx:stable diff --git a/docker/Dockerfile b/docker/Dockerfile index f2adaf0c..941b2632 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,7 +1,7 @@ # -- build-environment -- # see https://docs.docker.com/engine/userguide/eng-image/multistage-build/ -FROM quay.io/travelping/alpine-erlang:23.3.3 AS build-env +FROM quay.io/travelping/alpine-erlang:23.3.4 AS build-env WORKDIR /build RUN apk update && apk --no-cache upgrade && \