Update Dockerfile

This commit is contained in:
Pascal Vizeli 2019-09-05 14:20:35 +02:00 committed by GitHub
parent edc5e5e812
commit a308ea6927
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies from requirements.txt if it exists
COPY requirements.txt requirements_tests.txt .
COPY requirements.txt requirements_tests.txt ./
RUN pip3 install -r requirements_tests.txt -r requirements_tests.txt \
&& pip3 install black tox \
&& rm -f requirements.txt requirements_tests.txt