FROM python:3.7-alpine WORKDIR /usr/src/app COPY echo.py ./ RUN pip install websockets ENTRYPOINT ["python", "./echo.py"]