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