Adding -r flag to pip install command and fixing name of Dockerfile in run-tests

This commit is contained in:
Winterflower 2019-11-25 19:50:19 +01:00
parent d0aa84a894
commit 12236078a8
2 changed files with 2 additions and 2 deletions

View File

@ -3,4 +3,4 @@ FROM python:${PYTHON_VERSION}
WORKDIR /code/eland
COPY . .
RUN pip install requirements-dev.txt
RUN pip install -r requirements-dev.txt

View File

@ -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 .
docker build --file .ci/Dockerfile --tag elastic/eland .