Files
udp_over_ws/central.Dockerfile
Danil Kolesnikov dae81eaebe central.py
2025-02-12 23:37:08 +03:00

10 lines
179 B
Docker

FROM python:3.8-slim
EXPOSE 80
WORKDIR /app
RUN pip install --no-cache-dir websockets asyncudp
COPY central.py /app/
STOPSIGNAL SIGINT
ENTRYPOINT ["python", "-u", "central.py"]