Spaces:
Paused
Paused
File size: 391 Bytes
b1549e1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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"]
|