July 2019
Beginner to intermediate
302 pages
9h 38m
English
We will start with the catalog application from Chapter 11, Deployment and Post-Deployment, in the Managing and monitoring application performance with New Relic recipe:
FROM python:3WORKDIR /usr/src/appCOPY requirements.txt requirements.txtRUN pip3 install -r requirements.txtCOPY . .ENTRYPOINT [ "python" ]CMD [ "run.py" ]
Each line in the preceding file is a command that is executed ...