mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
25 lines
582 B
YAML
25 lines
582 B
YAML
name: Build Inference Images
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- docker/inference/**
|
|
- inference/**
|
|
|
|
jobs:
|
|
build-inference-server:
|
|
uses: ./.github/workflows/docker-build.yaml
|
|
with:
|
|
image-name: oasst-inference-server
|
|
context: .
|
|
dockerfile: docker/inference/Dockerfile.server
|
|
build-args: ""
|
|
build-inference-worker-full:
|
|
uses: ./.github/workflows/docker-build.yaml
|
|
with:
|
|
image-name: oasst-inference-worker-full
|
|
context: .
|
|
dockerfile: docker/inference/Dockerfile.worker-full
|
|
build-args: "" |