init release v0.5

This commit is contained in:
Léo Haf 2025-04-22 14:13:49 +02:00
commit 48b15d0376
Signed by: Retropex
GPG Key ID: F5073C4F4882FFFC
4 changed files with 19 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.DS_Store

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "Custom-Ocean.xyz-Dashboard"]
path = Custom-Ocean.xyz-Dashboard
url = https://github.com/Djobleezy/Custom-Ocean.xyz-Dashboard.git

@ -0,0 +1 @@
Subproject commit ce3b186dc521bb30fc635043a4fe9dd184ae0faa

14
dockerfile Normal file
View File

@ -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"]