mirror of
https://github.com/cmehay/pyentrypoint
synced 2024-11-10 13:10:37 +00:00
13 lines
246 B
Python
13 lines
246 B
Python
# Testing with python 3
|
|
|
|
FROM python:3
|
|
|
|
RUN pip3 install pytest twiggy six pyyaml
|
|
|
|
ADD python-entrypoint /opt/python-entrypoint/
|
|
ADD tests/entrypoint-config.yml /opt/python-entrypoint/
|
|
|
|
WORKDIR /opt/python-entrypoint/
|
|
|
|
CMD ["py.test", "-s", "."]
|