From 9b67c951c24912fb2c408ea76440fb6fd58acd68 Mon Sep 17 00:00:00 2001 From: Bogdan Fazakas Date: Thu, 25 Feb 2021 11:12:18 +0200 Subject: [PATCH] added default values for docker image/tag/entrypoint --- src/models/FormAlgoPublish.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/models/FormAlgoPublish.ts b/src/models/FormAlgoPublish.ts index d5299229f..44214b1be 100644 --- a/src/models/FormAlgoPublish.ts +++ b/src/models/FormAlgoPublish.ts @@ -31,9 +31,9 @@ export const initialValues: Partial = { name: '', author: '', dockerImage: 'node:pre-defined', - image: '', - containerTag: '', - entrypoint: '', + image: 'node', + containerTag: '10', + entrypoint: 'node $ALGO', files: '', description: '', algorithmPrivacy: false,