File tree Expand file tree Collapse file tree 3 files changed +16
-10
lines changed
grabdish/inventory-python Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "java.completion.enabled" : false ,
3+ "java.debug.settings.enableRunDebugCodeLens" : false
4+ }
Original file line number Diff line number Diff line change @@ -10,10 +10,12 @@ RUN yum -y install oracle-release-el7 && \
1010
1111WORKDIR /app
1212COPY inventory/requirements.txt .
13- RUN yum install -y python36 && \
14- yum install -y tar && \
15- rm -rf /var/cache/yum && \
16- python3.6 -m pip install -r requirements.txt
13+ RUN yum install -y tar && \
14+ yum install -y python36 \
15+ yum install -y python36-oci-sdk && \
16+ rm -rf /var/cache/yum && \
17+ python3.6 -m pip install -U pip setuptools && \
18+ python3.6 -m pip install -r requirements.txt
1719
1820ADD inventory .
1921ADD common .
Original file line number Diff line number Diff line change 1- Flask_restful
2- gunicorn
3- cx_Oracle
4- simplejson
5- oci
6-
1+ ###### Requirements without Version Specifiers ######`
2+ Flask_restful # req for app.py
3+ gunicorn # req for config.py
4+ cx_Oracle # req for app.py, consumer.py
5+ simplejson # req for app.py, consumer.py
6+ oci # req for vaultsecret.py
You can’t perform that action at this time.
0 commit comments