File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change
1
+ FROM python:3.7.3-alpine3.9
2
+
3
+ COPY src /app
4
+ WORKDIR /app
5
+ RUN pip install --trusted-host pypi.python.org -r requirements.txt
6
+ EXPOSE 5000
Original file line number Diff line number Diff line change
1
+ services :
2
+ app :
3
+ build :
4
+ context : .
5
+ dockerfile : Dockerfile
6
+ volumes :
7
+ - ./src/components:/app/components
8
+ ports :
9
+ - " 5000:5000"
10
+ network_mode : ' host'
11
+ entrypoint : python3 tvwb.py
Original file line number Diff line number Diff line change @@ -117,7 +117,10 @@ <h2 class="accordion-header" id="flush-headingTwo">
117
117
{% endfor %}
118
118
</ div >
119
119
< div class ="p-3 bg-light shadow-sm ">
120
- < div class ='fs-4 '> Key</ div >
120
+ < div class ="d-flex align-items-center ">
121
+ < div class ='fs-4 '> Key</ div >
122
+ < small class ="text-muted ps-2 "> (entire string)</ small >
123
+ </ div >
121
124
< div >
122
125
< code id ="{{ key }}-field "> {{ event.key }}</ code >
123
126
< button
You can’t perform that action at this time.
0 commit comments