FROM python RUN pip install bottle WORKDIR /app COPY src/ . EXPOSE 9001 ENTRYPOINT python3 index.py