File tree 3 files changed +16
-10
lines changed
grabdish/inventory-python
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 && \
10
10
11
11
WORKDIR /app
12
12
COPY 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
17
19
18
20
ADD inventory .
19
21
ADD 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