| FROM debian:stable-slim | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| WORKDIR /app | |
| RUN apt-get update && apt-get install -y --no-install-recommends git python3 python3-pip python3-venv ca-certificates curl wget procps build-essential && rm -rf /var/lib/apt/lists/* | |
| COPY entrypoint.sh /entrypoint.sh | |
| RUN chmod +x /entrypoint.sh | |
| EXPOSE 7860 | |
| CMD ["/entrypoint.sh"] |