mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 21:49:15 +00:00

* socket: Fork @iov/socket * socket: Remove nonces * socket: Update package.json * socket: Update README * socket: Remove tslint * socket: Fix lint warnings * scripts: Fork socketserver from IOV Core * root: Update NOTICE for socket * tendermint-rpc: Replace @iov/socket dependency with @cosmjs/socket * root: Update CI config for tendermint/socket * scripts: Add wait to tendermint start script * socket: Add coverage
9 lines
125 B
Docker
9 lines
125 B
Docker
FROM python:3.7-alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY echo.py ./
|
|
RUN pip install websockets
|
|
|
|
ENTRYPOINT ["python", "./echo.py"]
|