Steve/EV Dashboard/nginx 도커파일 및 설정파일 추가

This commit is contained in:
byun
2026-05-26 21:10:16 +09:00
parent 8617642fae
commit 607e4d758b
9 changed files with 402 additions and 0 deletions

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"]