File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change
1
+ # EditorConfig is awesome: https://EditorConfig.org
2
+
3
+ # top-most EditorConfig file
4
+ root = true
5
+
6
+ [* ]
7
+ end_of_line = lf
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
10
+
11
+ [{* .md,* .yaml,* .yml} ]
12
+ indent_style = space
13
+ indent_size = 2
14
+ x-soft-wrap-text = true
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ FROM coatldev/python:3
25
25
WORKDIR /usr/src/app
26
26
27
27
COPY requirements.txt ./
28
- RUN pip install --no-cache-dir -r requirements.txt
28
+ RUN python -m pip install -r requirements.txt
29
29
30
30
COPY . .
31
31
@@ -40,7 +40,7 @@ FROM coatldev/python:2
40
40
WORKDIR /usr/src/app
41
41
42
42
COPY requirements.txt ./
43
- RUN pip install --no-cache-dir -r requirements.txt
43
+ RUN python -m pip install -r requirements.txt
44
44
45
45
COPY . .
46
46
You can’t perform that action at this time.
0 commit comments