Docker Image (Source) #173
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Github workflow to build a docker image from source | |
name: Docker Image (Source) | |
on: | |
workflow_dispatch: | |
workflow_call: | |
## Define which docker arch to build for | |
env: | |
docker_platforms: "linux/amd64" | |
docker-org: blockstack | |
concurrency: | |
group: docker-image-source-${{ github.head_ref || github.ref || github.run_id }} | |
## Always cancel duplicate jobs | |
cancel-in-progress: true | |
jobs: | |
## Runs anytime `ci.yml` runs or when manually called | |
image: | |
name: Build Image | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
## Build a maximum of 2 images concurrently based on matrix.dist | |
max-parallel: 2 | |
matrix: | |
dist: | |
- debian | |
steps: | |
## Increase swapfile | |
- name: Increase swapfile | |
run: | | |
sudo swapoff -a | |
sudo fallocate -l 15G /swapfile | |
sudo chmod 600 /swapfile | |
sudo mkswap /swapfile | |
sudo swapon /swapfile | |
sudo swapon --show | |
## Setup Docker for the builds | |
- name: Docker setup | |
id: docker_setup | |
uses: stacks-network/actions/docker@main | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
## if the repo owner is not `stacks-network`, default to a docker-org of the repo owner (i.e. github user id) | |
## this allows forks to run the docker push workflows without having to hardcode a dockerhub org (but it does require docker hub user to match github username) | |
- name: Set Local env vars | |
id: set_env | |
if: | | |
github.repository_owner != 'stacks-network' | |
run: | | |
echo "docker-org=${{ github.repository_owner }}" >> "$GITHUB_ENV" | |
## Set docker metatdata | |
- name: Docker Metadata ( ${{matrix.dist}} ) | |
id: docker_metadata | |
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 #v5.5.1 | |
with: | |
images: | | |
${{env.docker-org}}/${{ github.event.repository.name }} | |
${{env.docker-org}}/stacks-blockchain | |
tags: | | |
type=raw,value=${{ env.BRANCH_NAME }} | |
type=ref,event=pr | |
## Build docker image | |
- name: Build and Push ( ${{matrix.dist}} ) | |
id: docker_build | |
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0 | |
with: | |
file: ./.github/actions/dockerfiles/Dockerfile.${{matrix.dist}}-source | |
platforms: ${{ env.docker_platforms }} | |
tags: ${{ steps.docker_metadata.outputs.tags }} | |
labels: ${{ steps.docker_metadata.outputs.labels }} | |
build-args: | | |
STACKS_NODE_VERSION=${{ env.GITHUB_SHA_SHORT }} | |
GIT_BRANCH=${{ env.GITHUB_REF_SHORT }} | |
GIT_COMMIT=${{ env.GITHUB_SHA_SHORT }} | |
TARGET_CPU=x86-64-v3 | |
push: ${{ env.DOCKER_PUSH }} |