Files
requests3/Dockerfile
T
2019-04-22 08:07:47 -04:00

11 lines
178 B
Docker

from kennethreitz/pipenv
# Python, don't write bytecode!
ENV PYTHONDONTWRITEBYTECODE 1
# Copy the source code over.
COPY . /app
# Run setup.py test.
CMD python3 setup.py test