We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a47757f commit a033baeCopy full SHA for a033bae
1 file changed
.diploi/helm/app.yaml
@@ -38,10 +38,13 @@ spec:
38
- name: install-dependencies
39
image: {{ .Values.images.app }}
40
imagePullPolicy: Always
41
- command: |
42
- python -m venv .venv
43
- direnv allow
44
- pip install -r requirements.txt
+ command:
+ - /bin/sh
+ - -c
+ - |
45
+ python -m venv .venv
46
+ direnv allow
47
+ pip install -r requirements.txt
48
workingDir: /app/{{ .Values.identifier }}
49
volumeMounts:
50
- name: app-mount
0 commit comments