2021-03-19 15:12:16 +01:00
|
|
|
FROM python:3.9
|
2017-03-07 14:04:44 -05:00
|
|
|
|
2017-01-24 22:42:13 +01:00
|
|
|
COPY python-requirements.txt /requirements.txt
|
|
|
|
RUN pip install -r /requirements.txt
|
2017-03-07 14:04:44 -05:00
|
|
|
|
2017-01-24 22:42:13 +01:00
|
|
|
WORKDIR /test
|
|
|
|
ENTRYPOINT ["pytest"]
|