From 12236078a8467e7cd04ae824ed3534da7b4aecbd Mon Sep 17 00:00:00 2001 From: Winterflower Date: Mon, 25 Nov 2019 19:50:19 +0100 Subject: [PATCH] Adding -r flag to pip install command and fixing name of Dockerfile in run-tests --- .ci/Dockerfile | 2 +- .ci/run-tests | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/Dockerfile b/.ci/Dockerfile index 91c76c6..127e433 100644 --- a/.ci/Dockerfile +++ b/.ci/Dockerfile @@ -3,4 +3,4 @@ FROM python:${PYTHON_VERSION} WORKDIR /code/eland COPY . . -RUN pip install requirements-dev.txt \ No newline at end of file +RUN pip install -r requirements-dev.txt \ No newline at end of file diff --git a/.ci/run-tests b/.ci/run-tests index d4ee6ac..3ac2f69 100755 --- a/.ci/run-tests +++ b/.ci/run-tests @@ -56,4 +56,4 @@ echo -e "\033[1m>>>>> YOUR STEPS HERE >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m" echo -e "\033[1m>>>>> Build [elastic/eland container] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m" -docker build --file .ci/DockerFile --tag elastic/eland . \ No newline at end of file +docker build --file .ci/Dockerfile --tag elastic/eland . \ No newline at end of file