We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2e648d commit d194a98Copy full SHA for d194a98
1 file changed
.github/workflows/build.yml
@@ -20,10 +20,15 @@ jobs:
20
with:
21
username: ${{ secrets.DOCKERHUB_USERNAME }}
22
password: ${{ secrets.DOCKERHUB_TOKEN }}
23
- - name: Build and push
24
- uses: docker/build-push-action@v6
25
- with:
26
- context: .
27
- platforms: linux/amd64,linux/arm64
28
- push: true
29
- tags: freelabspace/nacos-backup:latest
+ - name: Build and push Docker image
+ uses: docker/build-push-action@v6
+ with:
+ context: .
+ file: ./Dockerfile
+ platforms: linux/amd64,linux/arm64
+ push: true
30
+ tags: |
31
+ freelabspace/python-local:3.10
32
+ freelabspace/python-local:latest
33
+ cache-from: type=gha
34
+ cache-to: type=gha,mode=max
0 commit comments