Skip to content

Publish Docker Image #12

Publish Docker Image

Publish Docker Image #12

Workflow file for this run

name: docker-build
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and export
uses: docker/build-push-action@v6
with:
tags: tribler:latest
outputs: type=docker,dest=/tmp/myimage.tar
file: build/docker/build.Dockerfile
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: myimage
path: /tmp/myimage.tar