mirror of
https://github.com/kennethreitz/requests3.git
synced 2026-06-05 23:10:16 +00:00
11 lines
178 B
Docker
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
|