Skip to content

Commit e750e8c

Browse files
authored
Merge pull request #13 from seqeralabs/bump-connect-client-0.9
Bump connect-client to 0.9
2 parents aa8781b + 5d942b8 commit e750e8c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ on:
1010
required: true
1111
type: string
1212
connect_client_version:
13-
description: 'Version of connect-client to use (e.g., 0.8)'
13+
description: 'Version of connect-client to use (e.g., 0.9)'
1414
required: true
1515
type: string
16-
default: '0.8'
16+
default: '0.9'
1717

1818
env:
1919
REGISTRY: ghcr.io
2020
# Use release tag for releases, or input tag for manual runs
2121
IMAGE_TAG: ${{ github.event_name == 'release' && github.event.release.tag_name || inputs.tag }}
22-
# Use provided connect-client version or default to 0.8
23-
CONNECT_CLIENT_VERSION: ${{ inputs.connect_client_version || '0.8' }}
22+
# Use provided connect-client version or default to 0.9
23+
CONNECT_CLIENT_VERSION: ${{ inputs.connect_client_version || '0.9' }}
2424

2525
jobs:
2626
build-and-push:

cellxgene/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ---------------------------------------------------------------
22
# 1) Multi-stage build: Pull the connect-client binary
33
# ---------------------------------------------------------------
4-
ARG CONNECT_CLIENT_VERSION=0.8
4+
ARG CONNECT_CLIENT_VERSION=0.9
55
FROM public.cr.seqera.io/platform/connect-client:${CONNECT_CLIENT_VERSION} AS connect
66

77
# ---------------------------------------------------------------

marimo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ---------------------------------------------------------------
22
# 1) Multi-stage build: Pull the connect-client binary
33
# ---------------------------------------------------------------
4-
ARG CONNECT_CLIENT_VERSION=0.8
4+
ARG CONNECT_CLIENT_VERSION=0.9
55
FROM public.cr.seqera.io/platform/connect-client:${CONNECT_CLIENT_VERSION} AS connect
66

77
# Choose a python version that you know works with your application

shiny-simple-example/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ---------------------------------------------------------------
22
# 1) Multi-stage build: Pull the connect-client binary
33
# ---------------------------------------------------------------
4-
ARG CONNECT_CLIENT_VERSION
4+
ARG CONNECT_CLIENT_VERSION=0.9
55
FROM public.cr.seqera.io/platform/connect-client:${CONNECT_CLIENT_VERSION} AS connect
66

77
# ---------------------------------------------------------------

streamlit/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ---------------------------------------------------------------
22
# 1) Multi-stage build: Pull the connect-client binary
33
# ---------------------------------------------------------------
4-
ARG CONNECT_CLIENT_VERSION=0.8
4+
ARG CONNECT_CLIENT_VERSION=0.9
55
FROM public.cr.seqera.io/platform/connect-client:${CONNECT_CLIENT_VERSION} AS connect
66

77
# ---------------------------------------------------------------

ttyd/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ---------------------------------------------------------------
22
# 1) Multi-stage build: Pull the connect-client binary
33
# ---------------------------------------------------------------
4-
ARG CONNECT_CLIENT_VERSION
4+
ARG CONNECT_CLIENT_VERSION=0.9
55
FROM public.cr.seqera.io/platform/connect-client:${CONNECT_CLIENT_VERSION} AS connect
66

77
# Final image: Start from an arbitrary container

0 commit comments

Comments
 (0)