eland/.ci/Dockerfile
2021-08-20 08:39:02 -05:00

8 lines
114 B
Docker

ARG PYTHON_VERSION=3.9
FROM python:${PYTHON_VERSION}
WORKDIR /code/eland
RUN python -m pip install nox
COPY . .