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.nas Normal file
View File

@@ -0,0 +1,7 @@
# Dockerfile для эмулятора NAS
FROM python:3.11-slim
WORKDIR /app
COPY src/nas_emulator.py ./
RUN pip install flask
EXPOSE 5050
CMD ["python", "nas_emulator.py"]