Skip to content

Commit bfe59d9

Browse files
committed
Found an issue from old rebase, fixed.
1 parent 18c8f03 commit bfe59d9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build/build_all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def compress_file(file_path):
422422
decompress_file(file)
423423

424424
# Run schema checker - This will always run if uploading data.
425-
schema_check_command = ['python3', 'check_schema.py', '--datasets'] + datasets
425+
schema_check_command = ['python3', 'scripts/check_schema.py', '--datasets'] + datasets
426426
run_docker_upload_cmd(schema_check_command, 'all_files_dir', 'validate', args.version)
427427

428428
print("Validation complete. Proceeding with file compression/decompression adjustments")

build/docker/Dockerfile.upload

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ RUN python -m pip install --upgrade pip pyyaml requests linkml
77
RUN apt-get update && apt-get install -y git
88

99

10-
COPY ./schema /usr/src/app/schema
11-
ADD scripts/check_schema.py ./
10+
RUN git clone https://github.com/PNNL-CompBio/coderdata.git
11+
WORKDIR /usr/src/app/coderdata

0 commit comments

Comments
 (0)