-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Docker | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tagInput: | ||
description: 'Tag' | ||
required: true | ||
|
||
workflow_run: | ||
workflows: ["Release Package to PyPI.org"] | ||
branches: [main] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
build-and-push-image: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GH_TOKEN }} | ||
- name: Determine version tag | ||
id: version-tag | ||
run: | | ||
INPUT_VALUE="${{ github.event.inputs.tagInput }}" | ||
if [ -z "$INPUT_VALUE" ]; then | ||
INPUT_VALUE="${{ github.ref_name }}" | ||
fi | ||
echo "::set-output name=value::$INPUT_VALUE" | ||
- name: Build and push | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: | | ||
ghcr.io/ieasybooks/tafrigh:latest | ||
ghcr.io/ieasybooks/tafrigh:${{ steps.version-tag.outputs.value }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
- name: Build and push Wit image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
build-args: | | ||
DEPS=wit | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: | | ||
ghcr.io/ieasybooks/tafrigh-wit:latest | ||
ghcr.io/ieasybooks/tafrigh-wit:${{ steps.version-tag.outputs.value }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
- name: Build and push Whisper image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
build-args: | | ||
DEPS=whisper | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: | | ||
ghcr.io/ieasybooks/tafrigh-whisper:latest | ||
ghcr.io/ieasybooks/tafrigh-whisper:${{ steps.version-tag.outputs.value }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Use the official Python 3.11 Slim image as the base image | ||
FROM python:3.11-slim | ||
|
||
# Set the working directory to /tafrigh | ||
WORKDIR /tafrigh | ||
|
||
# Install system dependencies | ||
RUN apt-get update && \ | ||
apt-get install -y ffmpeg && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Use build arguments to specify dependencies | ||
ARG DEPS="wit,whisper" | ||
|
||
# Install tafrigh with the specified dependencies | ||
RUN pip install tafrigh[$DEPS] | ||
|
||
# Set the entrypoint to run the installed binary in /tafrigh | ||
# Example: docker run -it -v "$PWD:/tafrigh" tafrigh ... | ||
ENTRYPOINT ["tafrigh"] |