FROM python:3.11-slim COPY . /myapp WORKDIR /myapp RUN pip install python-dotenv ENTRYPOINT [ "python", "multiply.py" ]