mirror of
https://github.com/cmehay/pyentrypoint
synced 2024-10-30 15:21:11 +00:00
12 lines
140 B
Python
12 lines
140 B
Python
# Testing with python 3
|
|
|
|
FROM python:3
|
|
|
|
RUN pip3 install pytest
|
|
|
|
ADD . /opt/docker-tools/
|
|
|
|
WORKDIR /opt/docker-tools/
|
|
|
|
CMD ["py.test", "."]
|