DeepSea-startos/Dockerfile
2025-04-25 14:23:44 +02:00

15 lines
337 B
Docker

FROM debian:bookworm-slim
WORKDIR /app
RUN apt-get update &&\
apt-get install python3 python3-pip curl -y
COPY DeepSea-Dashboard /app
RUN pip install --break-system-packages -r requirements.txt
RUN python3 setup.py
ADD ./docker_entrypoint.sh /usr/local/bin/docker_entrypoint.sh
RUN chmod a+x /usr/local/bin/docker_entrypoint.sh