Quiz 1 of 0

Research Questions – Building a Custom Image (Add on)

Refer to the below Dockerfile and answer the following questions:

FROM python:3.6
RUN pip install flask
COPY . /opt/
EXPOSE 8080
WORKDIR /opt
ENTRYPOINT ["python", "app.py"]