feat: Add docker image build workflow ...

This commit is contained in:
Matthias 2024-10-31 18:26:00 +01:00
parent c4bedc59b8
commit ff0b6fddf9

37
.github/workflows/docker.yml vendored Normal file
View File

@ -0,0 +1,37 @@
name: Build and Publish Docker Container
on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
environment:
name: Production
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: freqtradeorg/frequi:latest