Speedup CI by only installing Nox in Dockerfile

This commit is contained in:
Seth Michael Larson 2021-08-20 08:39:02 -05:00 committed by GitHub
parent 1aa193da9e
commit 7a2e845a76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,7 @@
ARG PYTHON_VERSION=3.7
ARG PYTHON_VERSION=3.9
FROM python:${PYTHON_VERSION}
WORKDIR /code/eland
COPY requirements-dev.txt .
RUN pip install -r requirements-dev.txt
RUN python -m pip install nox
COPY . .