Skip to content

Commit

Permalink
chore: add dockerfile for transformer image
Browse files Browse the repository at this point in the history
  • Loading branch information
nreinartz committed Nov 12, 2023
1 parent 60c5810 commit 87dc5fd
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/transformer-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: transformer-image

on:
push:
paths:
- "transformer/Dockerfile"

env:
VERSION: 1.0.0

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ github.actor }}/tatdd-transformer
ghcr.io/${{ github.actor }}/tatdd-transformer
tags: |
type=raw,value=${{ env.VERSION }}
type=sha
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- 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: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: |
"latest"
${{ env.VERSION }}
labels: ${{ steps.meta.outputs.labels }}
11 changes: 11 additions & 0 deletions transformer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM semitechnologies/transformers-inference:custom

LABEL org.opencontainers.image.created=${BUILD_DATE}
LABEL org.opencontainers.image.version="1.0.0"
LABEL org.opencontainers.image.authors="Nico Reinartz <[email protected]>"
LABEL org.opencontainers.image.vendor="Nico Reinartz"
LABEL org.opencontainers.image.title="WeaviteTransformer"
LABEL org.opencontainers.image.description="Transformer for Weaviate, using allenai/specter2"
LABEL org.opencontainers.image.source = "https://github.com/nreinartz/tatdd-backend"

RUN MODEL_NAME=allenai/specter2 ./download.py

0 comments on commit 87dc5fd

Please sign in to comment.