Skip to content

Commit

Permalink
Merge pull request #85 from zilliztech/update-docker
Browse files Browse the repository at this point in the history
update docker action
  • Loading branch information
shanghaikid authored Jul 29, 2024
2 parents 529bd47 + 90c1f3b commit b61fee7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/docker_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
- name: Docker Build
run: docker build -f docker/Dockerfile -t zilliz/milvus_cli:${GITHUB_REF#refs/tags/} --build-arg VERSION=${GITHUB_REF#refs/tags/} .

- name: Docker push tag
run: docker push zilliz/milvus_cli:${GITHUB_REF#refs/tags/}

- name: Docker tag
run: docker tag zilliz/milvus_cli:${GITHUB_REF#refs/tags/} zilliz/milvus_cli:latest

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
From python:3.8-slim

RUN pip install milvus-cli==0.4.0
RUN pip install milvus-cli==1.0.0
RUN pip3 install protobuf==3.20.0

ENTRYPOINT ["milvus_cli"]

0 comments on commit b61fee7

Please sign in to comment.