Spaces:
Sleeping
Sleeping
# Use an official Python runtime as a parent image | |
FROM python:3.11 | |
# Copy the entrypoint script into the container | |
COPY entrypoint.sh /entrypoint.sh | |
# Grant execute permissions to the entrypoint script | |
RUN chmod +x /entrypoint.sh | |
# Set the entrypoint script as the default entrypoint for the container | |
ENTRYPOINT ["/entrypoint.sh"] | |