mirror of
https://github.com/kennethreitz/requests3.git
synced 2026-06-05 06:56:15 +00:00
12 lines
243 B
Docker
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
|