-
Notifications
You must be signed in to change notification settings - Fork 40
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
1 parent
6a8892a
commit c9cff3e
Showing
1 changed file
with
57 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,57 @@ | ||
name: Build Embedding Docker Image | ||
|
||
on: | ||
push: | ||
branches: [ "auto-embedding" ] | ||
|
||
jobs: | ||
build: | ||
|
||
name: Build Embedding Docker Image | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Log in to Docker Hub | ||
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Get Current Date | ||
id: date | ||
run: echo "::set-output name=date::$(date +'%Y%m%d%H%M%S')" | ||
|
||
- name: Build | ||
env: | ||
DOCKER_HUB_REPOSITORY: epsilla/vectordb | ||
SHA_TAG: ${{ github.sha }} | ||
run: | | ||
export BUILD_TIMESTAMP=${{ steps.date.outputs.date }} | ||
echo "BUILD_TIMESTAMP: ${BUILD_TIMESTAMP}" | ||
wget https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64 | ||
chmod +x buildx-v0.11.2.linux-amd64 | ||
mkdir -p $HOME/.docker/cli-plugins | ||
mv buildx-v0.11.2.linux-amd64 $HOME/.docker/cli-plugins/docker-buildx | ||
docker buildx create --use | ||
cd ./engine | ||
docker buildx build --platform linux/amd64 \ | ||
--pull \ | ||
--push \ | ||
--label "org.opencontainers.image.version"=${BUILD_TIMESTAMP} \ | ||
-t ${DOCKER_HUB_REPOSITORY}:embedding . | ||