55 --build-arg BUILD_DATE=${BUILD_DATE} \
66 --build-arg AUTOBAHN_PYTHON_VCS_REF=${AUTOBAHN_PYTHON_VCS_REF} \
77 --build-arg AUTOBAHN_PYTHON_VERSION=${AUTOBAHN_PYTHON_VERSION} \
8+ -t crossbario/autobahn-python:latest \
89 -t crossbario/autobahn-python:cpy3 \
910 -t crossbario/autobahn-python:cpy3-${AUTOBAHN_PYTHON_VERSION} \
1011 -f Dockerfile.cpy3 .
2122 # --build-arg BUILD_DATE=${BUILD_DATE} \
2223 # --build-arg AUTOBAHN_PYTHON_VCS_REF=${AUTOBAHN_PYTHON_VCS_REF} \
2324 # --build-arg AUTOBAHN_PYTHON_VERSION=${AUTOBAHN_PYTHON_VERSION} \
24- # -t crossbario/autobahn-python:latest \
2525 # -t crossbario/autobahn-python:cpy3-alpine \
2626 # -t crossbario/autobahn-python:cpy3-alpine-${AUTOBAHN_PYTHON_VERSION} \
2727 # -f Dockerfile.cpy3-alpine .
@@ -46,22 +46,22 @@ version: python_version autobahn_version xbr_version
4646
4747python_version :
4848 docker run -it --rm crossbario/autobahn-python:cpy3 python -V
49- docker run -it --rm crossbario/autobahn-python:pypy3 python -V
49+ docker run -it --rm crossbario/autobahn-python:pypy3 pypy3 -V
5050 # docker run -it --rm crossbario/autobahn-python:cpy3-alpine python -V
5151 # docker run -it --rm crossbario/autobahn-python:cpy3-minimal-aio python -V
5252 # docker run -it --rm crossbario/autobahn-python:cpy3-minimal-tx python -V
5353
5454autobahn_version :
5555 docker run -it --rm crossbario/autobahn-python:cpy3 python -c " import autobahn; print('running autobahn-{}'.format(autobahn.__version__))"
56- docker run -it --rm crossbario/autobahn-python:pypy3 python -c " import autobahn; print('running autobahn-{}'.format(autobahn.__version__))"
56+ docker run -it --rm crossbario/autobahn-python:pypy3 pypy3 -c " import autobahn; print('running autobahn-{}'.format(autobahn.__version__))"
5757 # docker run -it --rm crossbario/autobahn-python:cpy3-alpine python -c "import autobahn; print('running autobahn-{}'.format(autobahn.__version__))"
5858 # docker run -it --rm crossbario/autobahn-python:cpy3-minimal-aio python -c "import autobahn; print('running autobahn-{}'.format(autobahn.__version__))"
5959 # docker run -it --rm crossbario/autobahn-python:cpy3-minimal-tx python -c "import autobahn; print('running autobahn-{}'.format(autobahn.__version__))"
6060
6161xbr_version :
62- docker run -it --rm crossbario/autobahn-python:cpy3 python -c " from autobahn import xbr; print(xbr.network.address )"
63- docker run -it --rm crossbario/autobahn-python:pypy3 python -c " from autobahn import xbr; print(xbr.network.address )"
64- # docker run -it --rm crossbario/autobahn-python:cpy3-alpine python -c "from autobahn import xbr; print(xbr.network.address )"
62+ docker run -it --rm crossbario/autobahn-python:cpy3 python -c " from autobahn import xbr; print(xbr.HAS_XBR )"
63+ docker run -it --rm crossbario/autobahn-python:pypy3 pypy3 -c " from autobahn import xbr; print(xbr.HAS_XBR )"
64+ # docker run -it --rm crossbario/autobahn-python:cpy3-alpine python -c "from autobahn import xbr; print(xbr.HAS_XBR )"
6565
6666
6767test : test_cpy3 test_pypy3 test_cpy3_alpine test_cpy3_minimal_aio test_cpy3_minimal_tx
0 commit comments