Add docker folder
This commit is contained in:
parent
4b5cad11f0
commit
c2265be49c
|
@ -0,0 +1,9 @@
|
||||||
|
FROM python:3.11-slim
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
EXPOSE 5353
|
||||||
|
|
||||||
|
CMD ["python", "broadcast.py"]
|
|
@ -0,0 +1,8 @@
|
||||||
|
services:
|
||||||
|
udp-multicast:
|
||||||
|
build:
|
||||||
|
context: ../src
|
||||||
|
dockerfile: ../docker/Dockerfile
|
||||||
|
ports:
|
||||||
|
- 5353:5353
|
||||||
|
network_mode: "host"
|
Loading…
Reference in New Issue