Skip to content

Commit

Permalink
Use postgresql-client-14
Browse files Browse the repository at this point in the history
  • Loading branch information
joecorkerton committed Jun 25, 2024
1 parent 8c2cb5e commit 9d148bb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/elixir-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,31 +17,31 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Build and push Debian image otp 26 elixir 1.17
- name: Build and push Alpine image otp 26 elixir 1.15
uses: ./.github/actions/push-image
with:
image_name: ghcr.io/multiverse-io/elixir-ci
image_tag: 1.17.1-erlang-26.2.5-debian-bookworm-20240612-slim
context: ./elixir-ci/debian
image_tag: 1.15.8-erlang-26.2.5-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.17.1
ELIXIR_VERSION=1.15.8
ERLANG_VERSION=26.2.5
DEBIAN_VERSION=bookworm-20240612-slim
ALPINE_VERSION=3.20.1
- name: Build and push Alpine image otp 26 elixir 1.15
- name: Build and push Debian image otp 26 elixir 1.17
uses: ./.github/actions/push-image
with:
image_name: ghcr.io/multiverse-io/elixir-ci
image_tag: 1.15.8-erlang-26.2.5-alpine-3.20.1
context: ./elixir-ci/alpine
image_tag: 1.17.1-erlang-26.2.5-debian-bookworm-20240612-slim
context: ./elixir-ci/debian
registry_password: ${{ secrets.GITHUB_TOKEN }}
lacework_access_token: ${{ secrets.LW_ACCESS_TOKEN }}
build_args: |
ELIXIR_VERSION=1.15.8
ELIXIR_VERSION=1.17.1
ERLANG_VERSION=26.2.5
ALPINE_VERSION=3.20.1
DEBIAN_VERSION=bookworm-20240612-slim
- name: Build and push Alpine image otp 26
uses: ./.github/actions/push-image
Expand Down
2 changes: 1 addition & 1 deletion elixir-ci/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG ALPINE_VERSION

FROM hexpm/elixir:${ELIXIR_VERSION}-erlang-${ERLANG_VERSION}-alpine-${ALPINE_VERSION}

RUN apk add --no-cache curl python3 py3-pip postgresql13-client jq nodejs~=18 yarn bc git build-base imagemagick brotli chromium bash openssh-client docker-cli xvfb libc6-compat tar
RUN apk add --no-cache curl python3 py3-pip postgresql14-client jq nodejs~=18 yarn bc git build-base imagemagick brotli chromium bash openssh-client docker-cli xvfb libc6-compat tar

RUN apk upgrade --no-cache

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~=18

RUN apk upgrade --no-cache

Expand Down

0 comments on commit 9d148bb

Please sign in to comment.