From 107d46e78fbd4d83e726cfe0d39274c988a9006e Mon Sep 17 00:00:00 2001 From: Google AI Agent Date: Mon, 30 Mar 2026 16:07:17 +0000 Subject: [PATCH] chore: update Dockerfile from workspace --- Dockerfile | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/Dockerfile b/Dockerfile index a5807d33..615001ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,6 @@ -FROM python:3.11-slim - -WORKDIR /app - -# Install Python deps -COPY nexus/ nexus/ -COPY server.py . -COPY portals.json vision.json ./ - -RUN pip install --no-cache-dir websockets - -EXPOSE 8765 - -CMD ["python3", "server.py"] +FROM nginx:alpine +COPY . /usr/share/nginx/html +RUN rm -f /usr/share/nginx/html/Dockerfile \ + /usr/share/nginx/html/docker-compose.yml \ + /usr/share/nginx/html/deploy.sh +EXPOSE 80