We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbef2ea commit 4575bfaCopy full SHA for 4575bfa
2 files changed
.dockerignore
@@ -1,27 +1,9 @@
1
-**/__pycache__
2
-**/.venv
3
-**/.classpath
4
-**/.dockerignore
5
-**/.env
6
-**/.git
7
-**/.gitignore
8
-**/.project
9
-**/.settings
10
-**/.toolstarget
11
-**/.vs
12
-**/.vscode
13
-**/*.*proj.user
14
-**/*.dbmdl
15
-**/*.jfm
16
-**/bin
17
-**/charts
18
-**/docker-compose*
19
-**/compose*
20
-**/Dockerfile*
21
-**/node_modules
22
-**/npm-debug.log
23
-**/obj
24
-**/secrets.dev.yaml
25
-**/values.dev.yaml
26
-LICENSE
27
-README.md
+.env
+.git
+.gitignore
+__pycache__
+*.pyc
+*.pyo
+*.egg-info
+.DS_Store
+*.md
Dockerfile
@@ -15,7 +15,6 @@ RUN mkdir -p /config && chown -R appuser /app /config
COPY requirements.txt .
RUN pip install --no-cache-dir --require-hashes -r requirements.txt
-COPY .env .
COPY . .
COPY entrypoint.sh /entrypoint.sh
0 commit comments