Skip to content

Commit

Permalink
Upgrade alpine 3.18 -> 3.20 (#40)
Browse files Browse the repository at this point in the history
* Upgrade alpine 3.18 -> 3.20

* remove version constraint on node version
  • Loading branch information
hoyon authored Jul 10, 2024
1 parent e322aa8 commit 5e9c00b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/elixir-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ jobs:
ERLANG_VERSION=26.2.5.1
DEBIAN_VERSION=bookworm-20240701-slim
- name: Build and push Alpine image otp 26
- name: Build and push Alpine image otp 26 elixir 1.14
uses: ./.github/actions/push-image
with:
image_name: ghcr.io/multiverse-io/elixir-ci
image_tag: 1.14.5-erlang-26.2.5-alpine-3.20.1
image_tag: 1.14.5-erlang-26.2.5.2-alpine-3.20.1
context: ./elixir-ci/alpine
registry_password: ${{ secrets.GITHUB_TOKEN }}
lacework_access_token: ${{ secrets.LW_ACCESS_TOKEN }}
build_args: |
ELIXIR_VERSION=1.14.5
ERLANG_VERSION=26.2.5
ERLANG_VERSION=26.2.5.2
ALPINE_VERSION=3.20.1
- name: Build and push Debian image
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/elixir-cypress-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ jobs:
ERLANG_VERSION=26.1.2
DEBIAN_VERSION=bullseye-20231009-slim
- name: Build and push image otp 26
- name: Build and push image otp 26 elixir 1.14
uses: ./.github/actions/push-image
with:
image_name: ghcr.io/multiverse-io/elixir-cypress-ci
image_tag: 1.14.5-erlang-26.1.2-debian-bookworm-20231009-slim
image_tag: 1.14.5-erlang-26.2.5.2-debian-bookworm-20240701-slim
context: ./elixir-cypress-ci
registry_password: ${{ secrets.GITHUB_TOKEN }}
fail_on_security_vulnerabilities: false
lacework_access_token: ${{ secrets.LW_ACCESS_TOKEN }}
build_args: |
ELIXIR_VERSION=1.14.5
ERLANG_VERSION=26.1.2
DEBIAN_VERSION=bookworm-20231009-slim
ERLANG_VERSION=26.2.5.2
DEBIAN_VERSION=bookworm-20240701-slim
12 changes: 6 additions & 6 deletions .github/workflows/platform-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,27 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Build and push image alpine 3.18.0
- name: Build and push image alpine 3.18.4
uses: ./.github/actions/push-image
with:
image_name: ghcr.io/multiverse-io/platform-production
image_tag: alpine-3.18.0
image_tag: alpine-3.18.4
context: ./platform-production
registry_password: ${{ secrets.GITHUB_TOKEN }}
lacework_access_token: ${{ secrets.LW_ACCESS_TOKEN }}
build_args: |
ALPINE_VERSION=3.18.0
ALPINE_VERSION=3.18.4
- name: Build and push image alpine 3.18.4
- name: Build and push image alpine 3.20.1
uses: ./.github/actions/push-image
with:
image_name: ghcr.io/multiverse-io/platform-production
image_tag: alpine-3.18.4
image_tag: alpine-3.20.1
context: ./platform-production
registry_password: ${{ secrets.GITHUB_TOKEN }}
lacework_access_token: ${{ secrets.LW_ACCESS_TOKEN }}
build_args: |
ALPINE_VERSION=3.18.4
ALPINE_VERSION=3.20.1
- name: Switch to keepalive branch
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion platform-production/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM lacework/datacollector:latest-sidecar AS lacework-collector
ARG ALPINE_VERSION
FROM alpine:${ALPINE_VERSION}

RUN apk add --no-cache imagemagick curl postgresql13-client chromium bash jq openssl util-linux nodejs~=18
RUN apk add --no-cache imagemagick curl postgresql14-client chromium bash jq openssl util-linux nodejs

RUN apk upgrade --no-cache

Expand Down

0 comments on commit 5e9c00b

Please sign in to comment.