-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (25 loc) · 1.04 KB
/
docker.yaml
File metadata and controls
25 lines (25 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Docker Image Publish
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install buildx
run: |
sudo apt-get update
sudo apt-get install -y binfmt-support qemu-user-static jq
mkdir -p ~/.docker/cli-plugins
BUILDX_URL=$(curl https://api.github.com/repos/docker/buildx/releases/latest | jq -r .assets[].browser_download_url | grep amd64 | grep linux)
wget $BUILDX_URL -O ~/.docker/cli-plugins/docker-buildx
chmod +x ~/.docker/cli-plugins/docker-buildx
docker buildx create --name xbuilder
docker buildx use xbuilder
docker buildx inspect --bootstrap
- name: Log in to GHCR registry
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
- name: Build the Docker image
run: docker buildx build . --file Dockerfile --tag ghcr.io/mect/eID-REST:$GITHUB_SHA --push --platform "linux/amd64,linux/arm64,linux/arm"