Files
2019-04-23 19:48:55 -04:00

12 lines
243 B
Docker

from kennethreitz/pipenv
# Python, don't write bytecode!
ENV PYTHONDONTWRITEBYTECODE 1
# Copy the source code over.
COPY . /app
RUN find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
# Run setup.py test.
CMD python3 setup.py test