Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start use image 'quay.io/travelping/alpine-erlang:23.3.4' #380

Merged
merged 1 commit into from
May 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down