File tree Expand file tree Collapse file tree 5 files changed +46
-4
lines changed Expand file tree Collapse file tree 5 files changed +46
-4
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ cef.log
11
11
.swp
12
12
* .egg-info
13
13
.pytest_cache
14
+ pip-wheel-metadata
14
15
15
16
build
16
17
generated
Original file line number Diff line number Diff line change @@ -146,6 +146,48 @@ tasks:
146
146
owner : ${owner_email}
147
147
source : ${repo_url}
148
148
149
+ - taskId : {$eval: as_slugid("agent-docker-build")}
150
+ created : {$fromNow: ''}
151
+ deadline : {$fromNow: '2 hours'}
152
+ provisionerId : aws-provisioner-v1
153
+ workerType : github-worker
154
+ routes : []
155
+ payload :
156
+ maxRunTime : 3600
157
+ image : " taskcluster/image_builder:0.1.3"
158
+ command :
159
+ - " /bin/bash"
160
+ - " -c"
161
+ - " git clone ${repo_url} balrog && cd balrog && git checkout ${head_sha} && cd agent && docker build ."
162
+ features :
163
+ dind : true
164
+ metadata :
165
+ name : Balrog agent docker build
166
+ description : Balrog agent docker build
167
+ owner : ${owner_email}
168
+ source : ${repo_url}
169
+
170
+ - taskId : {$eval: as_slugid("backend-docker-build")}
171
+ created : {$fromNow: ''}
172
+ deadline : {$fromNow: '2 hours'}
173
+ provisionerId : aws-provisioner-v1
174
+ workerType : github-worker
175
+ routes : []
176
+ payload :
177
+ maxRunTime : 3600
178
+ image : " taskcluster/image_builder:0.1.3"
179
+ command :
180
+ - " /bin/bash"
181
+ - " -c"
182
+ - " git clone ${repo_url} balrog && cd balrog && git checkout ${head_sha} && docker build ."
183
+ features :
184
+ dind : true
185
+ metadata :
186
+ name : Balrog backend docker build
187
+ description : Balrog backend docker build
188
+ owner : ${owner_email}
189
+ source : ${repo_url}
190
+
149
191
- taskId : {$eval: as_slugid("old-ui-tests")}
150
192
created : {$fromNow: ''}
151
193
deadline : {$fromNow: '2 hours'}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ COPY src/ /app/src/
29
29
COPY ui/ /app/ui/
30
30
COPY uwsgi/ /app/uwsgi/
31
31
COPY scripts/manage-db.py scripts/run-batch-deletes.sh scripts/run.sh scripts/reset-stage-db.sh scripts/get-prod-db-dump.py /app/scripts/
32
- COPY version.json /app/
32
+ COPY setup.py version.json version.txt /app/
33
33
34
34
RUN python setup.py install
35
35
Original file line number Diff line number Diff line change 1
1
include LICENSE
2
2
include pyproject.toml
3
+ include setup.py
3
4
include tox.ini
4
5
include version.txt
5
6
Original file line number Diff line number Diff line change 1
- ARG PYTHON_VERSION
2
-
3
- FROM python:${PYTHON_VERSION}-stretch
1
+ FROM python:3.7-stretch
4
2
5
3
6
4
You can’t perform that action at this time.
0 commit comments