[go: up one dir, main page]

Menu

[c80db1]: / tests / Dockerfile  Maximize  Restore  History

Download this file

14 lines (9 with data), 290 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
ARG OCTOBOT_IMAGE
FROM $OCTOBOT_IMAGE
# Make sure we use the virtualenv:
ENV PATH="/opt/venv/bin:$PATH"
ENV CYTHON_IGNORE=true
COPY dev_requirements.txt .
COPY tests tests
RUN pip freeze && pip install --prefer-binary -r dev_requirements.txt
ENTRYPOINT ["./tests/docker-entrypoint.sh"]