Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ RUN mv ./kubectl /usr/local/bin/


#Upgrade pip
RUN pip install --upgrade pip
RUN pip install --no-cache-dir --upgrade pip


# Copy the current directory contents into the container at /app
COPY . /app


# Install any needed packages specified in requirements.txt
RUN pip install --trusted-host pypi.python.org -r requirements.txt
RUN pip install --no-cache-dir --trusted-host pypi.python.org -r requirements.txt


WORKDIR /app/mla_app_code
Expand Down
2 changes: 1 addition & 1 deletion mla_tenant_code/setup_container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN apt-get update
RUN apt-get -y install curl
RUN apt-get -y install tar
RUN apt-get -y install python3-pip
RUN pip3 install kubernetes
RUN pip3 install --no-cache-dir kubernetes

#####################################
# COPY SETUP FILE TO CONTAINER
Expand Down
4 changes: 2 additions & 2 deletions mla_tenant_code/view_container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ RUN apt-get upgrade
RUN apt-get -y install curl
RUN apt-get -y install tar
RUN apt-get -y install python3-pip
RUN pip3 install kubernetes
RUN pip3 install flask
RUN pip3 install --no-cache-dir kubernetes
RUN pip3 install --no-cache-dir flask

#####################################
# SETUP KUBECTL
Expand Down