OCPP 프록시를 Docker로 통합

This commit is contained in:
root
2026-04-18 21:40:36 +09:00
parent 4558ac10c0
commit 93d7ae617c
3 changed files with 54 additions and 2 deletions

10
Dockerfile.proxy Executable file
View File

@@ -0,0 +1,10 @@
FROM python:3.11-slim
WORKDIR /code
RUN pip install --no-cache-dir websockets aiohttp
COPY entrypoint-proxy.sh /code/
RUN chmod +x /code/entrypoint-proxy.sh
CMD ["/code/entrypoint-proxy.sh"]