Caching can be very easily added to GitHub Actions
steps:
- name: "[🐳] Build and Push Docker Image"
id: build-push
uses: docker/build-push-action@v6
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ env.DOCKER_IMAGE_NAME }}:latest
++ cache-from: type=gha
++ cache-to: type=gha,mode=max
It will significantly speed up the deployment and build process, I can add this also
Caching can be very easily added to GitHub Actions
steps: - name: "[🐳] Build and Push Docker Image" id: build-push uses: docker/build-push-action@v6 with: context: . push: true platforms: linux/amd64,linux/arm64 tags: ${{ env.DOCKER_IMAGE_NAME }}:latest ++ cache-from: type=gha ++ cache-to: type=gha,mode=maxIt will significantly speed up the deployment and build process, I can add this also