5
5
--build-arg BUILD_DATE=${BUILD_DATE} \
6
6
--build-arg AUTOBAHN_PYTHON_VCS_REF=${AUTOBAHN_PYTHON_VCS_REF} \
7
7
--build-arg AUTOBAHN_PYTHON_VERSION=${AUTOBAHN_PYTHON_VERSION} \
8
+ -t crossbario/autobahn-python:latest \
8
9
-t crossbario/autobahn-python:cpy3 \
9
10
-t crossbario/autobahn-python:cpy3-${AUTOBAHN_PYTHON_VERSION} \
10
11
-f Dockerfile.cpy3 .
21
22
# --build-arg BUILD_DATE=${BUILD_DATE} \
22
23
# --build-arg AUTOBAHN_PYTHON_VCS_REF=${AUTOBAHN_PYTHON_VCS_REF} \
23
24
# --build-arg AUTOBAHN_PYTHON_VERSION=${AUTOBAHN_PYTHON_VERSION} \
24
- # -t crossbario/autobahn-python:latest \
25
25
# -t crossbario/autobahn-python:cpy3-alpine \
26
26
# -t crossbario/autobahn-python:cpy3-alpine-${AUTOBAHN_PYTHON_VERSION} \
27
27
# -f Dockerfile.cpy3-alpine .
@@ -46,22 +46,22 @@ version: python_version autobahn_version xbr_version
46
46
47
47
python_version :
48
48
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
50
50
# docker run -it --rm crossbario/autobahn-python:cpy3-alpine python -V
51
51
# docker run -it --rm crossbario/autobahn-python:cpy3-minimal-aio python -V
52
52
# docker run -it --rm crossbario/autobahn-python:cpy3-minimal-tx python -V
53
53
54
54
autobahn_version :
55
55
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__))"
57
57
# docker run -it --rm crossbario/autobahn-python:cpy3-alpine python -c "import autobahn; print('running autobahn-{}'.format(autobahn.__version__))"
58
58
# docker run -it --rm crossbario/autobahn-python:cpy3-minimal-aio python -c "import autobahn; print('running autobahn-{}'.format(autobahn.__version__))"
59
59
# docker run -it --rm crossbario/autobahn-python:cpy3-minimal-tx python -c "import autobahn; print('running autobahn-{}'.format(autobahn.__version__))"
60
60
61
61
xbr_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 )"
65
65
66
66
67
67
test : test_cpy3 test_pypy3 test_cpy3_alpine test_cpy3_minimal_aio test_cpy3_minimal_tx
0 commit comments