lovespeech/websocket-server/Dockerfile

5 lines
186 B
Docker

FROM alpine:edge
RUN apk update && apk add py3-websockets
COPY --chmod=0555 ./entrypoint.sh /entrypoint.sh
COPY --chmod=0555 ./entrypoint.py /entrypoint.py
ENTRYPOINT ["/entrypoint.sh"]