Spaces:
Runtime error
Runtime error
File size: 137 Bytes
584d3c1 | 1 2 3 4 5 6 7 8 9 10 | FROM python:3.11-slim
RUN pip install --no-cache-dir requests
WORKDIR /app
COPY keepalive.py .
CMD ["python3", "-u", "keepalive.py"]
|