You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pyentrypoint/Dockerfile.py3

16 lines
235 B
Docker

9 years ago
# Testing with python 3
FROM python:3
9 years ago
RUN pip3 install pytest twiggy six pyyaml jinja2
9 years ago
9 years ago
ENV PYTHONPATH /opt/
9 years ago
ADD tests/test_template.yml.tpl /tmp/test_template.yml
9 years ago
9 years ago
WORKDIR /opt/tests
ENV SECRET nothing
9 years ago
CMD ["py.test", "-s", "."]