We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4540d9 commit 17a3a1fCopy full SHA for 17a3a1f
3 files changed
Dockerfile
@@ -7,8 +7,6 @@ ARG DEBIAN_FRONTEND=noninteractive
7
# Create a directory for the dps-unit-test application
8
RUN mkdir -p /app/dps-unit-test
9
10
-WORKDIR /app/dps-unit-test
11
-
12
# Copy application files to the working directory
13
COPY ./ /app/dps-unit-test
14
run-test.sh
@@ -3,7 +3,7 @@
3
basedir=$( cd "$(dirname "$0")" ; pwd -P)
4
5
OUTPUTDIR="${PWD}/output"
6
-INPUT_FILE=$(ls -d input/*)
+INPUT_FILE=$(ls -d /app/dps-unit-test/input/*)
mkdir -p ${OUTPUTDIR}
echo "Testing writing output product"
test-input-file.py
@@ -3,7 +3,6 @@
import os
date = datetime.now().isoformat()
-print(sys.argv)
input_file = sys.argv[1]
with open(input_file, 'r') as fr:
print(f"Opening input file {input_file} success")
0 commit comments