Spaces:
Paused
Paused
| FROM ubuntu:latest | |
| # Set environment variables | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| # Install dependencies | |
| RUN apt-get update && \ | |
| apt-get install -y python3 python3-venv python3-pip git curl && \ | |
| apt-get clean && rm -rf /var/lib/apt/lists/* | |
| # Copy the entrypoint script | |
| COPY entrypoint.sh /entrypoint.sh | |
| RUN chmod +x /entrypoint.sh | |
| ENTRYPOINT ["/entrypoint.sh"] | |
| CMD ["/bin/bash"] | |