Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ ENV NXF_VER=23.10.0
WORKDIR /opt

# Install JAVA and Node
RUN apt update && apt install -y default-jdk nodejs npm
RUN apt update && apt install -y default-jdk build-essential \
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt install -y nodejs

# Install VCF validator
RUN curl -LJo /usr/local/bin/vcf_validator https://github.com/EBIvariation/vcf-validator/releases/download/v${vcf_validator_version}/vcf_validator_linux \
Expand Down
2 changes: 1 addition & 1 deletion eva_sub_cli/validators/docker_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from eva_sub_cli.validators.validator import Validator, ALL_VALIDATION_TASKS

default_container_image = 'ebivariation/eva-sub-cli'
default_container_tag = 'v0.0.9'
default_container_tag = 'v0.0.10'
container_validation_dir = '/opt/vcf_validation'
container_validation_output_dir = 'vcf_validation_output'

Expand Down