NAS EMULATOR + WOL Proxy

This commit is contained in:
2025-08-31 15:01:12 +09:00
parent bb37f75a0a
commit 147f1dec22
5 changed files with 179 additions and 11 deletions

7
Dockerfile.wol Normal file
View File

@@ -0,0 +1,7 @@
# Dockerfile для WOL-прокси
FROM python:3.11-slim
WORKDIR /app
COPY src/wol_proxy.py ./
RUN pip install flask
EXPOSE 5000
CMD ["python", "wol_proxy.py"]