Speed_Read_AI / Dockerfile
circulartext's picture
Create Dockerfile
ff372a6
raw
history blame
336 Bytes
# 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"]