simplify woodpecker pipeline, add ctrl/standalone gateway

This commit is contained in:
buenosairesam
2026-01-02 21:12:02 -03:00
parent b526bde98e
commit 8279528b7c
5 changed files with 258 additions and 180 deletions

View File

@@ -0,0 +1,6 @@
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir fastapi uvicorn[standard] websockets
COPY main.py .
EXPOSE 8080
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]