You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The script runner doesn't have a reproducible end-to-end example that includes at a minimum a Dockerfile, requirements.txt and the Python code in one folder. It would be good to help users get started with an example that can run on a local docker-desktop installation of Argo workflows (to simplify image repository needs).
e.g. minimal Dockerfile:
FROM python:3.12-slim
WORKDIR /app
COPY . .
RUN pip install --upgrade pip \
&& pip install hera
The script runner doesn't have a reproducible end-to-end example that includes at a minimum a
Dockerfile
,requirements.txt
and the Python code in one folder. It would be good to help users get started with an example that can run on a local docker-desktop installation of Argo workflows (to simplify image repository needs).e.g. minimal
Dockerfile
:Issue motivated by slack conversation.
The text was updated successfully, but these errors were encountered: