File size: 336 Bytes
ff372a6
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# 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"]