This commit is contained in:
2026-03-07 03:43:50 +00:00
parent 365cb6692e
commit 17d9033152
17 changed files with 1349 additions and 88 deletions

View File

@@ -1,10 +1,17 @@
# Simple example app - a minimal Python web server
# Statping clone - HTTP/HTTPS and TCP monitoring
FROM python:3.11-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application
COPY app.py .
COPY app/ app/
COPY templates/ templates/
COPY static/ static/
EXPOSE 8080