This commit is contained in:
Sebastian
2025-03-18 05:48:47 +01:00
parent dd8c5f6aa5
commit 57f5091dcd
3 changed files with 56 additions and 0 deletions

8
groq/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.11
WORKDIR /app
COPY rpc_sync_checker.py /app/
RUN pip install groq
CMD ["python", "/app/rpc_sync_checker.py"]