Skip to content

chore: volumes for dockerfile #5

chore: volumes for dockerfile

chore: volumes for dockerfile #5

Workflow file for this run

---
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
# cancel any previously-started, yet still active runs of this workflow on the same branch
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
packages: write
env:
FORCE_COLOR: 1
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: 📦 Checkout Repository
id: checkout
uses: actions/checkout@v4
- name: 🛠️ Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v3
- name: 🛠️ Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: 🏷️ Login to GHCR
id: login_ghcr
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 🔖 Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: ghcr.io/${{ github.repository }}/springboot-server
flavor: latest=auto
tags: |
type=raw,value=latest,enable={{is_default_branch}},priority=300
type=ref,event=tag,priority=200
- name: 🐳 Docker Build and Push
id: build_image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64
context: .
file: ./Dockerfile
target: prod
builder: ${{ steps.buildx.outputs.name }}
cache-from: type=gha
cache-to: type=gha,mode=max
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
provenance: true
sbom: true