10 lines
166 B
Docker
10 lines
166 B
Docker
FROM python:3.8-slim
|
|
|
|
EXPOSE 5005
|
|
WORKDIR /app
|
|
RUN pip install --no-cache-dir websockets
|
|
|
|
COPY leaf.py /app/
|
|
STOPSIGNAL SIGINT
|
|
ENTRYPOINT ["python", "-u", "leaf.py"]
|