uptime-kuma-bridge/Dockerfile.bridge
Eliezer Croitoru 885ec7e678 1
2026-08-11 19:04:35 +03:00

13 lines
186 B
Docker

FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir flask gunicorn
COPY app.py .
COPY mapping.json .
EXPOSE 3000
CMD ["gunicorn", "--bind", "0.0.0.0:3000", "app:app"]