Skip to content

Commit 5fade37

Browse files
committed
Build and publish initial image
1 parent b5fa848 commit 5fade37

File tree

3 files changed

+97
-0
lines changed

3 files changed

+97
-0
lines changed

.github/workflows/docker-publish.yml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Docker
2+
3+
on:
4+
push:
5+
tags: [ 'v*.*' ]
6+
workflow_dispatch:
7+
8+
env:
9+
# Use docker.io for Docker Hub if empty
10+
REGISTRY: ghcr.io
11+
# github.repository as <account>/<repo>
12+
IMAGE_NAME: ${{ github.repository_owner }}/awscli-kubectl
13+
14+
15+
jobs:
16+
build:
17+
18+
runs-on: ubuntu-latest
19+
permissions:
20+
contents: read
21+
packages: write
22+
23+
steps:
24+
- name: Checkout repository
25+
uses: actions/checkout@v2
26+
27+
# Login against a Docker registry except on PR
28+
# https://github.com/docker/login-action
29+
- name: Log into registry ${{ env.REGISTRY }}
30+
if: github.event_name != 'pull_request'
31+
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
32+
with:
33+
registry: ${{ env.REGISTRY }}
34+
username: ${{ github.actor }}
35+
password: ${{ secrets.GITHUB_TOKEN }}
36+
37+
# Extract metadata (tags, labels) for Docker
38+
# https://github.com/docker/metadata-action
39+
- name: Extract Docker metadata
40+
id: meta
41+
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
42+
with:
43+
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
44+
tags: |
45+
type=match,pattern=v(\d+.\d+),group=1
46+
# Build and push Docker image with Buildx (don't push on PR)
47+
# https://github.com/docker/build-push-action
48+
- name: Build and push Docker image
49+
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
50+
with:
51+
context: .
52+
push: ${{ github.event_name != 'pull_request' }}
53+
tags: ${{ steps.meta.outputs.tags }}
54+
labels: ${{ steps.meta.outputs.labels }}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.idea/

Dockerfile

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
FROM alpine:3.16
2+
3+
# set some defaults
4+
ENV AWS_DEFAULT_REGION "us-east-1"
5+
ENV KUBECTL_VER=v0.23.10
6+
# https://github.com/sgerrand/alpine-pkg-glibc/releases
7+
ENV GLIBC_VER=2.33-r0
8+
9+
10+
RUN apk --no-cache upgrade
11+
RUN apk add --update bash ca-certificates git python3 jq
12+
13+
# install glibc compatibility for alpine and aws-cli v2
14+
# https://github.com/aws/aws-cli/issues/4685#issuecomment-615872019
15+
RUN apk --no-cache add \
16+
binutils \
17+
curl \
18+
&& curl -sL https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub -o /etc/apk/keys/sgerrand.rsa.pub \
19+
&& curl -sLO https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VER}/glibc-${GLIBC_VER}.apk \
20+
&& curl -sLO https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VER}/glibc-bin-${GLIBC_VER}.apk \
21+
&& apk add --no-cache \
22+
glibc-${GLIBC_VER}.apk \
23+
glibc-bin-${GLIBC_VER}.apk \
24+
&& curl -sL https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip -o awscliv2.zip \
25+
&& unzip awscliv2.zip \
26+
&& aws/install \
27+
&& rm -rf \
28+
awscliv2.zip \
29+
aws \
30+
/usr/local/aws-cli/v2/*/dist/aws_completer \
31+
/usr/local/aws-cli/v2/*/dist/awscli/data/ac.index \
32+
/usr/local/aws-cli/v2/*/dist/awscli/examples \
33+
&& curl -L "https://dl.k8s.io/release/${KUBECTL_VER}/bin/linux/amd64/kubectl" -o /usr/local/bin/kubectl \
34+
&& chmod +x /usr/local/bin/kubectl \
35+
&& apk --no-cache del \
36+
binutils \
37+
curl \
38+
&& rm glibc-${GLIBC_VER}.apk \
39+
&& rm glibc-bin-${GLIBC_VER}.apk \
40+
&& rm -rf /var/cache/apk/*
41+
42+
CMD bash

0 commit comments

Comments
 (0)