Skip to content

Commit

Permalink
Fedora 39
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Robinson <[email protected]>
  • Loading branch information
autarchprinceps committed Nov 9, 2023
1 parent bc042c4 commit 7cb0804
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 2 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/nodejs20.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: nodejs20

on:
push:
branches:
- main
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]

- name: Set up QEMU
uses: docker/[email protected]
with:
platforms: all

- name: Set up Docker Buildx
id: buildx
uses: docker/[email protected]
with:
install: true
version: latest
driver-opts: image=moby/buildkit:master

- name: Login to GitHub Packages Docker Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: jenkins-arvato
password: ${{ secrets.CR_PAT }}
- name: Build and Push
uses: docker/[email protected]
with:
platforms: linux/amd64,linux/arm64
push: true
pull: true
file: ./Dockerfile.nodejs20
tags: ghcr.io/arvatoaws-labs/lambda-pipeline/nodejs20:latest
cache-from: type=registry,ref=ghcr.io/arvatoaws-labs/lambda-pipeline/nodejs20:latest
cache-to: type=inline
2 changes: 1 addition & 1 deletion Dockerfile.java11
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ghcr.io/arvatoaws-labs/helm-pipeline/release:latest as helm

FROM ghcr.io/arvatoaws-labs/fedora:38
FROM ghcr.io/arvatoaws-labs/fedora:39

VOLUME /var/lib/docker

Expand Down
9 changes: 9 additions & 0 deletions Dockerfile.nodejs20
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM ghcr.io/arvatoaws-labs/helm-pipeline/release:latest as helm

FROM ghcr.io/arvatoaws-labs/fedora:39

VOLUME /var/lib/docker

COPY --from=helm /usr/bin/helm3 /usr/bin/helm

RUN dnf upgrade -y && dnf install -y nodejs npm findutils parallel awscli jq make gcc gcc-c++ automake file && dnf clean all
2 changes: 1 addition & 1 deletion Dockerfile.python3
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ghcr.io/arvatoaws-labs/helm-pipeline/release:latest as helm

FROM ghcr.io/arvatoaws-labs/fedora:38
FROM ghcr.io/arvatoaws-labs/fedora:39

VOLUME /var/lib/docker

Expand Down

0 comments on commit 7cb0804

Please sign in to comment.