mirror of
https://github.com/Retropex/docker-DeepSea.git
synced 2025-05-12 17:40:41 +02:00
14 lines
259 B
Plaintext
14 lines
259 B
Plaintext
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"] |