aboutsummaryrefslogtreecommitdiff
path: root/docker/Dockerfile.s3tests
diff options
context:
space:
mode:
authorKonstantin Lebedev <9497591+kmlebedev@users.noreply.github.com>2022-08-12 01:07:44 +0300
committerGitHub <noreply@github.com>2022-08-11 15:07:44 -0700
commitd8c54b527e55db48b9a28bb3f9216f0993b0e295 (patch)
tree2c05b29c11811710038f81f21ab3d9e1f6859a54 /docker/Dockerfile.s3tests
parent4d4cd0948d45bc537cbc2eaf3babca0559d27b25 (diff)
downloadseaweedfs-d8c54b527e55db48b9a28bb3f9216f0993b0e295.tar.xz
seaweedfs-d8c54b527e55db48b9a28bb3f9216f0993b0e295.zip
avoid Dockerfile Entrypoint: "file not found" (#3430)
https://www.koskila.net/how-to-fix-exec-user-process-caused-no-such-file-or-directory-in-docker-on-windows/
Diffstat (limited to 'docker/Dockerfile.s3tests')
-rw-r--r--docker/Dockerfile.s3tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile.s3tests b/docker/Dockerfile.s3tests
index e55ebadf9..4b7ea8d92 100644
--- a/docker/Dockerfile.s3tests
+++ b/docker/Dockerfile.s3tests
@@ -28,4 +28,4 @@ ENV \
S3TEST_CONF="/s3test.conf"
ENTRYPOINT ["/bin/bash", "-c"]
-CMD ["sleep 30 && exec ./virtualenv/bin/nosetests ${NOSETESTS_OPTIONS-} ${NOSETESTS_ATTR:+-a $NOSETESTS_ATTR} ${NOSETESTS_EXCLUDE:+-e $NOSETESTS_EXCLUDE}"] \ No newline at end of file
+CMD ["sleep 30 && exec ./virtualenv/bin/nosetests ${NOSETESTS_OPTIONS-} ${NOSETESTS_ATTR:+-a $NOSETESTS_ATTR} ${NOSETESTS_EXCLUDE:+-e $NOSETESTS_EXCLUDE}"]