• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1FROM python:3.2-slim
2# Dockerfile to run tests under python3.2
3
4# docker build -t ipaddress-python3.2 . -f test-python3.2.Dockerfile
5
6ADD . .
7RUN python test_ipaddress.py
8CMD python test_ipaddress.py
9