5 lines
182 B
Docker
5 lines
182 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"]
|