Skip to content

Commit 0f518a7

Browse files
committed
fix docker entrypoint and wflow
1 parent ef451fc commit 0f518a7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/compliance.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: json-yaml-validate
1+
name: compliance testing
22
on:
33
workflow_call:
44

@@ -34,5 +34,4 @@ jobs:
3434
- name: bids-validator
3535
run: |
3636
echo "${VALIDATOR_CONFIG}" > ${TMP_CONFIG_PATH}
37-
echo "docker run -v $TMP_CONFIG_PATH:$TMP_CONFIG_PATH -v ${GITHUB_WORKSPACE}:/bids ${VALIDATOR_IMAGE} -c ${TMP_CONFIG_PATH} ${VALIDATOR_OPTIONS} /bids"
3837
docker run -v $TMP_CONFIG_PATH:$TMP_CONFIG_PATH -v ${GITHUB_WORKSPACE}:/bids ${VALIDATOR_IMAGE} -c ${TMP_CONFIG_PATH} ${VALIDATOR_OPTIONS} /bids

Dockerfile.validator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ FROM denoland/deno:alpine-2.1.7
33
# build on main while waiting for the release to use wildcards in config
44
RUN deno install -Agf -n bids-validator https://github.com/bids-standard/bids-validator/raw/refs/heads/deno-build/bids-validator.js
55

6-
ENTRYPOINT bids-validator
6+
ENTRYPOINT ["bids-validator"]

0 commit comments

Comments
 (0)