Skip to content
Snippets Groups Projects
Commit acba2f50 authored by Raul Barreras's avatar Raul Barreras
Browse files

remove docker's '-it' parameter

parent 9f418847
No related branches found
No related tags found
6 merge requests!31Sync 6-add-automated-secrets-detection with Master,!30Master,!29Sync develop with master,!28Sync 6-add-automated-secrets-detection with master,!27Update 7-add-dependency-check to SonarScanner 4.0,!22Resolve "add simple unit tests for containers"
...@@ -3,7 +3,7 @@ chmod 777 ${TMP_DIR} ...@@ -3,7 +3,7 @@ chmod 777 ${TMP_DIR}
touch "${TMP_DIR}/dumb php file with spaces.php" touch "${TMP_DIR}/dumb php file with spaces.php"
touch "${TMP_DIR}/ddumb_php_file_without_spaces.php" touch "${TMP_DIR}/ddumb_php_file_without_spaces.php"
touch "${TMP_DIR}/$(printf '\u03c0').php" touch "${TMP_DIR}/$(printf '\u03c0').php"
docker run -it --rm -v "${TMP_DIR}:/work" its-registry.unl.edu/unl-its/docker-ci/php-lint:latest php-lint -d /work docker run --rm -v "${TMP_DIR}:/work" its-registry.unl.edu/unl-its/docker-ci/php-lint:latest php-lint -d /work
RET=$? RET=$?
rm -rf ${TMP_DIR} rm -rf ${TMP_DIR}
if [ $RET -eq 0 ]; then if [ $RET -eq 0 ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment