Skip to content

Commit

Permalink
chore: update secretflow version up to 1.10.0b0 (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
z0gSh1u authored Dec 6, 2024
1 parent 69a7530 commit 2bcd94d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ workflows:
arch: amd64
matrix:
parameters:
tag: ['1.9.0b0', '1.8.0b0', '1.7.0b0', '1.6.1b0']
tag: ['1.10.0b0', '1.9.0b0', '1.8.0b0', '1.7.0b0']
# Publish for linux/arm64
- devcontainer-publish-arm64:
filters:
Expand All @@ -111,7 +111,7 @@ workflows:
arch: arm64
matrix:
parameters:
tag: ['1.9.0b0', '1.8.0b0', '1.7.0b0', '1.6.1b0']
tag: ['1.10.0b0', '1.9.0b0', '1.8.0b0', '1.7.0b0']
# Manifest they two and push to registry
- devcontainer-manifest:
requires:
Expand All @@ -123,4 +123,4 @@ workflows:
- main
matrix:
parameters:
tag: ['1.9.0b0', '1.8.0b0', '1.7.0b0', '1.6.1b0']
tag: ['1.10.0b0', '1.9.0b0', '1.8.0b0', '1.7.0b0']
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ rm ~/.jupyter/secretnote*

### 本地构建 SecretFlow 计算节点镜像

[secretflow/secretnote](https://hub.docker.com/r/secretflow/secretnote) 目前维护 1.6.1b0 至 1.9.0b0 的镜像,同时支持 amd64 和 arm64 架构。如有定制化的需求,可自行构建计算节点镜像,例如构建 1.9.0b0 (linux/arm64) 镜像的命令如下:
[secretflow/secretnote](https://hub.docker.com/r/secretflow/secretnote) 目前维护 1.7.0b0 至 1.10.0b0 的镜像,同时支持 amd64 和 arm64 架构。如有定制化的需求,可自行构建计算节点镜像,例如构建 1.9.0b0 (linux/arm64) 镜像的命令如下:

```sh
docker buildx build --build-arg SECRETFLOW_VERSION=1.9.0b0 --platform linux/arm64 -t secretflow/secretnote:1.9.0b0 -f ./docker/secretflow-secretnote/Dockerfile .
Expand Down
2 changes: 1 addition & 1 deletion docker/secretflow-secretnote/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This Dockerfile will build the secretflow/secretnote image for depolying a node
# for SecretNote.

ARG SECRETFLOW_VERSION="1.9.0b0"
ARG SECRETFLOW_VERSION="1.10.0b0"

# Get the repository and remove unncessary files
FROM alpine:3.14 AS source-tree
Expand Down
4 changes: 2 additions & 2 deletions docker/secretnote-sf-sim/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
alice:
image: secretflow/secretnote:1.9.0b0
image: secretflow/secretnote:1.10.0b0
pull_policy: if_not_present
platform: linux/amd64
environment:
Expand All @@ -11,7 +11,7 @@ services:
- ./alice:/home/secretnote/workspace

bob:
image: secretflow/secretnote:1.9.0b0
image: secretflow/secretnote:1.10.0b0
pull_policy: if_not_present
platform: linux/amd64
environment:
Expand Down

0 comments on commit 2bcd94d

Please sign in to comment.