``` pipenv shell ``` ``` pipenv install flask ``` ``` pipenv run pip freeze > requirements.txt ``` ``` FROM python:3.8 WORKDIR /var/app COPY .. RUN pip install -r requirements.txt ``` ``` http://127.0.0.1:5000/ ```