FROM python:3.9.0
# If needed you can use the official python image (larger memory size)
#FROM python:3.9.0

RUN mkdir /app/
WORKDIR /app

COPY examples/PVInstallation ./
COPY examples/PVInstallation/requirements.txt ./
COPY src/dots_infrastructure src/dots_infrastructure
COPY ./pyproject.toml ./
COPY ./README.md ./
COPY ./LICENSE ./

RUN pip install ./

ENTRYPOINT python3 PVInstallation.py
