lovespeech/server/Dockerfile
2024-09-29 09:24:47 +02:00

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"]