FROM python:3.6 COPY ./requirements.txt /app/requirements.txt WORKDIR /app RUN pip install CMake RUN pip install -r requirements.txt RUN rm requirements.txt RUN pip install base64 RUN useradd -ms /bin/bash admin USER admin COPY /app . ENTRYPOINT [ "python" ] CMD [ "app.py" ]