commit 48b15d03765cd334666f064960eec85e32c6d7c7 Author: Léo Haf Date: Tue Apr 22 14:13:49 2025 +0200 init release v0.5 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..bef2841 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "Custom-Ocean.xyz-Dashboard"] + path = Custom-Ocean.xyz-Dashboard + url = https://github.com/Djobleezy/Custom-Ocean.xyz-Dashboard.git diff --git a/Custom-Ocean.xyz-Dashboard b/Custom-Ocean.xyz-Dashboard new file mode 160000 index 0000000..ce3b186 --- /dev/null +++ b/Custom-Ocean.xyz-Dashboard @@ -0,0 +1 @@ +Subproject commit ce3b186dc521bb30fc635043a4fe9dd184ae0faa diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..9ace568 --- /dev/null +++ b/dockerfile @@ -0,0 +1,14 @@ +FROM debian:bookworm-slim + +WORKDIR /app + +RUN apt-get update &&\ + apt-get install python3 python3-pip curl -y + +COPY Custom-Ocean.xyz-Dashboard /app + +RUN pip install --break-system-packages -r requirements.txt + +RUN python3 setup.py + +CMD ["python3", "App.py"] \ No newline at end of file