1 2 3 4 5 6 7 8 9
FROM bitnami/python:2.7.18-prod RUN apt-get update && apt-get upgrade -y RUN mkdir /mnt/host WORKDIR /usr/src/app COPY bin ./bin COPY src ./src COPY stories ./stories ENV PATH="/usr/src/app/bin:${PATH}" WORKDIR /mnt/host