aviemzur commented on a change in pull request #28:
URL: https://github.com/apache/incubator-liminal/pull/28#discussion_r588997466
##########
File path: liminal/build/image/python/Dockerfile
##########
@@ -28,13 +29,37 @@ WORKDIR /app
# Order of operations is important here for docker's caching & incremental
build performance. !
# Be careful when changing this code.
!
+# Update apt
+RUN echo "Updating apt"
+RUN apt-get update --fix-missing
+
+# Install gcc
+RUN echo "Installing gcc"
+RUN apt-get install -y gcc
+
+# Install git
+RUN echo "Installing git"
+RUN apt-get install -y git
+ARG GIT_USER=no_user_supplied
+ARG GIT_PASSWORD=""
+ARG GIT_AUTH=$GIT_USER":"$GIT_PASSWORD
+
# Install any needed packages specified in requirements.txt
COPY ./requirements.txt /app/
+{{copy_pip_conf}}
# mount the secret in the correct location, then run pip install
RUN pip install --upgrade pip
RUN {{mount}} pip install -r requirements.txt
+# Install pipenv
+RUN echo "Installing pipenv.."
+RUN pip install pipenv
+
+# Install awscli
+RUN echo "Installing awscli.."
Review comment:
This leaked from our fork, @zionrubin please remove
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]