Skip to content

Commit

Permalink
Merge pull request koslib#39 from koslib/bugfix/bump-kubectl-version
Browse files Browse the repository at this point in the history
Dependencies version upgrade in base docker image
  • Loading branch information
Konstantinos Livieratos authored Oct 14, 2022
2 parents 5bc36aa + e5e84c6 commit 68ef5e6
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/dockerhub.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Dockerhub Build

on:
workflow_dispatch:
inputs:
tag:
type: string
required: true

jobs:
docker:
runs-on: ubuntu-latest
env:
DOCKERHUB_USERNAME: koslib
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ env.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
tags: koslib/ga-helm-eks:latest, koslib/ga-helm-eks:{{ github.event.inputs.tag }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# For contributors: in case someone would like to contribute a change in the base docker image,
# please open a PR for the `dockerhub/Dockerfile` in the same project.

FROM koslib/ga-helm-eks:2.0
FROM koslib/ga-helm-eks:2.1
6 changes: 3 additions & 3 deletions dockerhub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ FROM mozilla/sops:v3.6.0-alpine as sops

FROM alpine:3.13

ARG AWSCLI_VERSION="1.23.13"
ARG HELM_VERSION="3.8.0"
ARG KUBECTL_VERSION="1.24.0"
ARG AWSCLI_VERSION="1.24.0"
ARG HELM_VERSION="3.10.1"
ARG KUBECTL_VERSION="1.25.91"

COPY --from=sops /usr/local/bin/sops /usr/bin/sops

Expand Down

0 comments on commit 68ef5e6

Please sign in to comment.