mirror of
https://github.com/status-im/open-bounty.git
synced 2025-01-11 01:55:58 +00:00
7 lines
201 B
Docker
7 lines
201 B
Docker
FROM python:3.6
|
|
COPY end-to-end/requirements.txt /app/requirements.txt
|
|
WORKDIR /app
|
|
RUN pip3 install -r requirements.txt
|
|
COPY end-to-end /app
|
|
ENTRYPOINT ["python3"]
|
|
CMD ["-m", "pytest", "-m", "sanity"] |