This repository was archived by the owner on Jan 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwithout-cache.log
9423 lines (9061 loc) · 500 KB
/
without-cache.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#1 [internal] booting buildkit
#1 sha256:3a0383d9e413a7df661369d0ceaa605046e755258296962858526f4d458b52ff
#1 pulling image moby/buildkit:buildx-stable-1
#1 pulling image moby/buildkit:buildx-stable-1 11.3s done
#1 creating container buildx_buildkit_default
#1 creating container buildx_buildkit_default 0.8s done
#1 DONE 12.1s
#2 [apollo-service-push internal] load build definition from Dockerfile
#2 sha256:fd63d9f1ec6b7713482445e09b1b916ad12a9b5200d2d3b7a41a478711447aaf
#2 transferring dockerfile: 8.74kB 0.0s done
#2 DONE 0.0s
#4 [upload-elastic-beanstalk-application-version internal] load build definition from Dockerfile
#4 sha256:1ab054272dc8c0e424b5cb16912d3db434015c7f7ddfa769555f6cecdc18de5a
#4 transferring dockerfile: 8.74kB done
#4 DONE 0.0s
#3 [upload-assets internal] load build definition from Dockerfile
#3 sha256:eedb68986902655a7f34e63e79a67e2b2c2affbcc30ac21de5993daa15becda7
#3 transferring dockerfile: 8.74kB done
#3 DONE 0.0s
#5 [test internal] load build definition from Dockerfile
#5 sha256:9359ef5b418003ff9b9c2218370b8e19b3d2ec574bb85a51a4a3b33ac9942575
#5 transferring dockerfile: 8.74kB done
#5 DONE 0.0s
#6 [production internal] load build definition from Dockerfile
#6 sha256:030e93a201e4ee90f4e3343d53bb714f3af22d6962a2313c5440dacf4dc361e1
#6 transferring dockerfile: 8.74kB done
#6 DONE 0.0s
#8 [cypress internal] load build definition from Dockerfile
#8 sha256:790eb3d1246610cdcc6fe117bf44a530caad597b57c0e2187226af9060bc6d29
#8 transferring dockerfile: 8.74kB done
#8 DONE 0.0s
#7 [e2e-test-server internal] load build definition from Dockerfile
#7 sha256:4c9d76596b0edd75e3d58e9c3078760239fcb0cd2fb98fc6a535c3b08797fcea
#7 transferring dockerfile: 8.74kB done
#7 DONE 0.0s
#9 [apollo-service-push internal] load .dockerignore
#9 sha256:c5a4299f04be477e275124341776e6bc8867942fcaf0a919ebe53028140ba47e
#9 transferring context: 984B 0.0s done
#9 DONE 0.0s
#10 [upload-assets internal] load .dockerignore
#10 sha256:be63f0794bbef1d232b931eb0194c618780e4bd98458a592a17ce8b5fa56d51c
#10 transferring context: 984B done
#10 DONE 0.0s
#12 [test internal] load .dockerignore
#12 sha256:dc9dc781707ff0d7f29f9c09ee3e8967899be218d6291bed1ee31c280d3b81a3
#12 transferring context: 984B done
#12 DONE 0.0s
#11 [upload-elastic-beanstalk-application-version internal] load .dockerignore
#11 sha256:75640892108607c4e3b8dd6212580d0ff087dd25d6d4bfef51274e2078c068d0
#11 transferring context: 984B done
#11 DONE 0.0s
#13 [production internal] load .dockerignore
#13 sha256:782e9d70f057f5e3158d4924cd111c8a61725dcabdd9863811e9e31e099b809d
#13 transferring context: 984B done
#13 DONE 0.0s
#14 [e2e-test-server internal] load .dockerignore
#14 sha256:7b16b10c8621106f0c4bdabd64db2fd08739c484fa72237981fa8245561145ac
#14 transferring context: 984B done
#14 DONE 0.0s
#15 [cypress internal] load .dockerignore
#15 sha256:f3f0eec1c7dfdf2ace2e8a96201a9adde04f3410bcfbf0095a62c100e606c650
#15 transferring context: 984B 0.0s done
#15 DONE 0.0s
#16 [apollo-service-push] resolve image config for docker.io/docker/dockerfile:1.2
#16 sha256:b239a20f31d7f1e5744984df3d652780f1a82c37554dd73e1ad47c8eb05b0d69
#16 ...
#17 [auth] docker/dockerfile:pull token for registry-1.docker.io
#17 sha256:5bff1bd6443beddb2647e12639bc60a0a5170667f914c501a99b62a5f8d80d20
#17 DONE 0.0s
#16 [cypress] resolve image config for docker.io/docker/dockerfile:1.2
#16 sha256:b239a20f31d7f1e5744984df3d652780f1a82c37554dd73e1ad47c8eb05b0d69
#16 DONE 1.7s
#16 [cypress] resolve image config for docker.io/docker/dockerfile:1.2
#16 sha256:b239a20f31d7f1e5744984df3d652780f1a82c37554dd73e1ad47c8eb05b0d69
#16 DONE 1.6s
#18 [apollo-service-push] docker-image://docker.io/docker/dockerfile:1.2@sha256:e2a8561e419ab1ba6b2fe6cbdf49fd92b95912df1cf7d313c3e2230a333fdbcc
#18 sha256:37e0c519b0431ef5446f4dd0a4588ba695f961e9b0e800cd8c7f5ba6165af727
#18 resolve docker.io/docker/dockerfile:1.2@sha256:e2a8561e419ab1ba6b2fe6cbdf49fd92b95912df1cf7d313c3e2230a333fdbcc done
#18 sha256:3cc8e449ce9f6e0752ede8f50a7334bf0c7b2d24d76da2ffae7aa6a729dd1da4 0B / 9.64MB 0.2s
#18 sha256:3cc8e449ce9f6e0752ede8f50a7334bf0c7b2d24d76da2ffae7aa6a729dd1da4 1.05MB / 9.64MB 0.3s
#18 sha256:3cc8e449ce9f6e0752ede8f50a7334bf0c7b2d24d76da2ffae7aa6a729dd1da4 2.10MB / 9.64MB 0.5s
#18 sha256:3cc8e449ce9f6e0752ede8f50a7334bf0c7b2d24d76da2ffae7aa6a729dd1da4 4.19MB / 9.64MB 0.6s
#18 sha256:3cc8e449ce9f6e0752ede8f50a7334bf0c7b2d24d76da2ffae7aa6a729dd1da4 6.29MB / 9.64MB 0.8s
#18 sha256:3cc8e449ce9f6e0752ede8f50a7334bf0c7b2d24d76da2ffae7aa6a729dd1da4 9.64MB / 9.64MB 1.0s done
#18 sha256:3cc8e449ce9f6e0752ede8f50a7334bf0c7b2d24d76da2ffae7aa6a729dd1da4 9.64MB / 9.64MB 1.0s done
#18 extracting sha256:3cc8e449ce9f6e0752ede8f50a7334bf0c7b2d24d76da2ffae7aa6a729dd1da4
#18 extracting sha256:3cc8e449ce9f6e0752ede8f50a7334bf0c7b2d24d76da2ffae7aa6a729dd1da4 0.2s done
#18 DONE 1.2s
#22 [upload-assets internal] load metadata for docker.io/amazon/aws-cli:2.0.38
#22 sha256:a8ea630a07ea7a44d889cfd19a5b8964b59d36360282df20f4dbd18aad6303ff
#22 ...
#25 [auth] library/ruby:pull token for registry-1.docker.io
#25 sha256:898717efa0a0faaad002443e3f3b67af45832f7b5f033cbcb39ddef8ea048f1b
#25 DONE 0.0s
#27 [auth] library/node:pull token for registry-1.docker.io
#27 sha256:3065f255bd50206bb074e1ec9a4300f1ce142a15124648a39f0ad4df1eb5b91a
#27 DONE 0.0s
#28 [auth] sharing credentials for 012345678901.dkr.ecr.eu-west-1.amazonaws.com
#28 sha256:7f3fa898d6571294d153570878a0020dbcf9a5e0ad2e9308f7340acf2f385db3
#28 DONE 0.0s
#29 [auth] sharing credentials for 012345678901.dkr.ecr.eu-west-1.amazonaws.com
#29 sha256:2e673a383f1f6037e05bb7a24c732ae9f47f513f571d5e7bcc01bf90e0048859
#29 DONE 0.0s
#30 [auth] sharing credentials for 012345678901.dkr.ecr.eu-west-1.amazonaws.com
#30 sha256:208d02b2475254ca9c0e40c6aa6ef275e1da770ba773dd6b0e484da0e1b62a9d
#30 DONE 0.0s
#31 [auth] amazon/aws-cli:pull token for registry-1.docker.io
#31 sha256:89b1121e350293c5ab1f0e76e536894fea46be3d1af1056ebe6fbcc05cfa4f92
#31 DONE 0.0s
#20 [upload-elastic-beanstalk-application-version internal] load metadata for docker.io/library/node:14.16.0-alpine3.13
#20 sha256:ba7d440b5a76f061b68b0489ee0dbdce66687edcb25d326b0dbf662af28f330e
#20 ...
#21 [production internal] load metadata for 012345678901.dkr.ecr.eu-west-1.amazonaws.com/envoy-preflight:62fdf4a226f42b7874bf1d037de9993e7fe1d916
#21 sha256:9a6594815befe08909517c55e0c69074f82051ac7e17e417104e97aef61237d9
#21 DONE 0.7s
#24 [upload-elastic-beanstalk-application-version internal] load metadata for 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws
#24 sha256:44fb19546d00ecc0fc29ada5df48efd68ec09909f4f00102f906e9ef658857a1
#24 DONE 0.7s
#21 [apollo-service-push internal] load metadata for 012345678901.dkr.ecr.eu-west-1.amazonaws.com/envoy-preflight:62fdf4a226f42b7874bf1d037de9993e7fe1d916
#21 sha256:9a6594815befe08909517c55e0c69074f82051ac7e17e417104e97aef61237d9
#21 DONE 0.7s
#23 [apollo-service-push internal] load metadata for 012345678901.dkr.ecr.eu-west-1.amazonaws.com/apollo-service-push:acaf3bf5b78961b558381c973aa81bbe8a3e8b48
#23 sha256:553ceaa3c95e955f4b3f83fa442fb679d579435b75e4f4920e9b79ab9f76306c
#23 DONE 0.7s
#19 [upload-elastic-beanstalk-application-version internal] load metadata for docker.io/library/ruby:2.6.6-alpine3.13
#19 sha256:1a8975533c05ac843c58bcd2a5a8dbd0f63acb3f745a7db154e6ac3fd585f5fc
#19 DONE 1.0s
#26 [cypress internal] load metadata for docker.io/library/node:14.16.0-buster-slim
#26 sha256:dbb778bf6bdcbefcec1ef6b2154b41b95c1c00370e84c181f4b804e060472838
#26 DONE 0.9s
#20 [upload-elastic-beanstalk-application-version internal] load metadata for docker.io/library/node:14.16.0-alpine3.13
#20 sha256:ba7d440b5a76f061b68b0489ee0dbdce66687edcb25d326b0dbf662af28f330e
#20 ...
#35 [cypress internal] load build context
#35 sha256:64ea288d01bab72b9fd4bd3e8a745dd317ce6d80e3ae0cde2f1bbb3bd5ef28d3
#35 transferring context: 106.76kB 0.0s done
#35 DONE 0.1s
#32 [cypress cypress 1/8] FROM docker.io/library/node:14.16.0-buster-slim@sha256:ffc15488e56d99dbc9b90d496aaf47901c6a940c077bc542f675ae351e769a12
#32 sha256:86e3f1848eb3ce3f99069e78ecbbed5fd53c86a4fb79bdcc6dad337914d6991e
#32 resolve docker.io/library/node:14.16.0-buster-slim@sha256:ffc15488e56d99dbc9b90d496aaf47901c6a940c077bc542f675ae351e769a12 0.0s done
#32 DONE 0.1s
#22 [upload-assets internal] load metadata for docker.io/amazon/aws-cli:2.0.38
#22 sha256:a8ea630a07ea7a44d889cfd19a5b8964b59d36360282df20f4dbd18aad6303ff
#22 DONE 1.3s
#32 [cypress cypress 1/8] FROM docker.io/library/node:14.16.0-buster-slim@sha256:ffc15488e56d99dbc9b90d496aaf47901c6a940c077bc542f675ae351e769a12
#32 sha256:86e3f1848eb3ce3f99069e78ecbbed5fd53c86a4fb79bdcc6dad337914d6991e
#32 sha256:92ae742dc5f7a3b0b1e815ff3f9f1be05d6971ccc5ab124a6a30bcae55c03b0e 284B / 284B 0.2s done
#32 sha256:cad99f44853d3d18474a52030b35186bfc61ee10a04fce97974d6a70d06177c3 0B / 2.77MB 0.2s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 0B / 34.99MB 0.2s
#32 sha256:45d607bea48c064edb346068b2c37344b1fe0353af01c172721a2f2bc8560a7f 4.18kB / 4.18kB 0.2s done
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 0B / 27.10MB 0.2s
#32 sha256:cad99f44853d3d18474a52030b35186bfc61ee10a04fce97974d6a70d06177c3 2.77MB / 2.77MB 0.4s done
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 3.15MB / 34.99MB 0.6s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 6.29MB / 34.99MB 0.8s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 8.39MB / 34.99MB 0.9s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 12.58MB / 34.99MB 1.2s
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 2.10MB / 27.10MB 1.1s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 14.68MB / 34.99MB 1.4s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 17.83MB / 34.99MB 1.5s
#32 ...
#20 [test internal] load metadata for docker.io/library/node:14.16.0-alpine3.13
#20 sha256:ba7d440b5a76f061b68b0489ee0dbdce66687edcb25d326b0dbf662af28f330e
#20 DONE 2.9s
#32 [cypress cypress 1/8] FROM docker.io/library/node:14.16.0-buster-slim@sha256:ffc15488e56d99dbc9b90d496aaf47901c6a940c077bc542f675ae351e769a12
#32 sha256:86e3f1848eb3ce3f99069e78ecbbed5fd53c86a4fb79bdcc6dad337914d6991e
#32 ...
#52 [apollo-service-push node 1/4] FROM docker.io/library/node:14.16.0-alpine3.13@sha256:eb2b2be77fbb7515ba116dbf20b55df0523e9d32e0c7b22bb5d625bdd0ad9109
#52 sha256:e4468d87d522bb9aa275f22adb31b176e64d6b1d9656f3f4b38fd555d7445c05
#52 resolve docker.io/library/node:14.16.0-alpine3.13@sha256:eb2b2be77fbb7515ba116dbf20b55df0523e9d32e0c7b22bb5d625bdd0ad9109 0.1s done
#52 DONE 0.1s
#32 [cypress cypress 1/8] FROM docker.io/library/node:14.16.0-buster-slim@sha256:ffc15488e56d99dbc9b90d496aaf47901c6a940c077bc542f675ae351e769a12
#32 sha256:86e3f1848eb3ce3f99069e78ecbbed5fd53c86a4fb79bdcc6dad337914d6991e
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 4.19MB / 27.10MB 1.7s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 20.97MB / 34.99MB 1.8s
#32 ...
#74 [production envoy-preflight 1/1] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/envoy-preflight:62fdf4a226f42b7874bf1d037de9993e7fe1d916@sha256:f40da0089ce5179492e40d2d4e12e42b4727a68740bab1e9028e7e4b942a9ead
#74 sha256:b4e12c97159cd77a5ebb668057d95e6e4bf38ccb6fb79ea20afe8f60d3cdc3c3
#74 resolve 012345678901.dkr.ecr.eu-west-1.amazonaws.com/envoy-preflight:62fdf4a226f42b7874bf1d037de9993e7fe1d916@sha256:f40da0089ce5179492e40d2d4e12e42b4727a68740bab1e9028e7e4b942a9ead 0.0s done
#74 DONE 0.2s
#32 [cypress cypress 1/8] FROM docker.io/library/node:14.16.0-buster-slim@sha256:ffc15488e56d99dbc9b90d496aaf47901c6a940c077bc542f675ae351e769a12
#32 sha256:86e3f1848eb3ce3f99069e78ecbbed5fd53c86a4fb79bdcc6dad337914d6991e
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 23.07MB / 34.99MB 2.1s
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 6.29MB / 27.10MB 2.1s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 25.17MB / 34.99MB 2.3s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 28.31MB / 34.99MB 2.6s
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 8.39MB / 27.10MB 2.6s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 30.41MB / 34.99MB 2.9s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 32.51MB / 34.99MB 3.0s
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 10.06MB / 27.10MB 3.0s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 34.60MB / 34.99MB 3.3s
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 11.53MB / 27.10MB 3.3s
#32 sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 34.99MB / 34.99MB 3.4s done
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 13.63MB / 27.10MB 3.6s
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 15.73MB / 27.10MB 3.9s
#32 ...
#52 [apollo-service-push node 1/4] FROM docker.io/library/node:14.16.0-alpine3.13@sha256:eb2b2be77fbb7515ba116dbf20b55df0523e9d32e0c7b22bb5d625bdd0ad9109
#52 sha256:e4468d87d522bb9aa275f22adb31b176e64d6b1d9656f3f4b38fd555d7445c05
#52 resolve docker.io/library/node:14.16.0-alpine3.13@sha256:eb2b2be77fbb7515ba116dbf20b55df0523e9d32e0c7b22bb5d625bdd0ad9109 0.1s done
#52 DONE 2.3s
#32 [cypress cypress 1/8] FROM docker.io/library/node:14.16.0-buster-slim@sha256:ffc15488e56d99dbc9b90d496aaf47901c6a940c077bc542f675ae351e769a12
#32 sha256:86e3f1848eb3ce3f99069e78ecbbed5fd53c86a4fb79bdcc6dad337914d6991e
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 17.83MB / 27.10MB 4.4s
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 19.92MB / 27.10MB 4.8s
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 22.02MB / 27.10MB 5.6s
#32 ...
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 resolve 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302 0.1s done
#132 DONE 4.3s
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 sha256:62607e5c440bd1301f4d0d811995e4bb07742de9daf63bcad17423a70733282f 0B / 4.42MB 0.2s
#132 sha256:27eeaa80b9314ba6cac6469ef135a27bfd9b6f8b30b866e48766117130c3df75 0B / 71.80MB 0.2s
#132 ...
#134 [upload-elastic-beanstalk-application-version internal] load build context
#134 sha256:bcfc335eaedc23a87e33cd5b9bf4d16e0bcc740b8f586079298066c3b6739923
#134 transferring context: 13.39MB 4.8s done
#134 DONE 5.1s
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 ...
#74 [production envoy-preflight 1/1] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/envoy-preflight:62fdf4a226f42b7874bf1d037de9993e7fe1d916@sha256:f40da0089ce5179492e40d2d4e12e42b4727a68740bab1e9028e7e4b942a9ead
#74 sha256:b4e12c97159cd77a5ebb668057d95e6e4bf38ccb6fb79ea20afe8f60d3cdc3c3
#74 sha256:d6a72c91dd3f7fce2556933e284e1e7f003310226e3d9fa180c84934e52a11b4 5.87MB / 5.87MB 2.5s done
#74 sha256:596ba82af5aaa3e2fd9d6f955b8b94f0744a2b60710e3c243ba3e4a467f051d1 2.81MB / 2.81MB 2.5s done
#74 extracting sha256:596ba82af5aaa3e2fd9d6f955b8b94f0744a2b60710e3c243ba3e4a467f051d1 0.8s done
#74 extracting sha256:d6a72c91dd3f7fce2556933e284e1e7f003310226e3d9fa180c84934e52a11b4 1.6s done
#74 DONE 5.0s
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 ...
#109 [upload-assets internal] load build context
#109 sha256:bc229b26b575a6d42ec4a851717fdfd80a0af6464f30d7e1500e42c5021cbc09
#109 transferring context: 13.39MB 5.1s done
#109 DONE 5.6s
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 sha256:62607e5c440bd1301f4d0d811995e4bb07742de9daf63bcad17423a70733282f 1.05MB / 4.42MB 1.1s
#132 sha256:62607e5c440bd1301f4d0d811995e4bb07742de9daf63bcad17423a70733282f 2.10MB / 4.42MB 1.8s
#132 sha256:62607e5c440bd1301f4d0d811995e4bb07742de9daf63bcad17423a70733282f 3.15MB / 4.42MB 2.3s
#132 sha256:62607e5c440bd1301f4d0d811995e4bb07742de9daf63bcad17423a70733282f 4.42MB / 4.42MB 2.9s
#132 sha256:62607e5c440bd1301f4d0d811995e4bb07742de9daf63bcad17423a70733282f 4.42MB / 4.42MB 3.1s done
#132 ...
#76 [production internal] load build context
#76 sha256:57e0e47398ca321788a75626759e0d8e57f1d9033cab780c66ebb998dff475e2
#76 transferring context: 27.57MB 8.5s done
#76 DONE 8.8s
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 ...
#190 [apollo-service-push internal] load build context
#190 sha256:04cb2a2c2cca62d9880007a71bb794a152f708ec499897cf75b844a4fd1add56
#190 transferring context: 27.57MB 8.8s done
#190 DONE 9.1s
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 sha256:27eeaa80b9314ba6cac6469ef135a27bfd9b6f8b30b866e48766117130c3df75 4.19MB / 71.80MB 4.9s
#132 ...
#41 [apollo-service-push ruby 1/3] FROM docker.io/library/ruby:2.6.6-alpine3.13@sha256:a92d35609c465172e752fc99ffc94a8acc13d74dbeeec711d1b06158ee66bcea
#41 sha256:42902c0eb7333415e5bc38f3212eba8e0b1e14466d391bb4aefd8ddc93aadab0
#41 resolve docker.io/library/ruby:2.6.6-alpine3.13@sha256:a92d35609c465172e752fc99ffc94a8acc13d74dbeeec711d1b06158ee66bcea 0.1s done
#41 sha256:9610f3585dbc4d96474ef5be04b88b1b8815349f57110904f1a35cbb963ef572 172B / 172B 0.5s done
#41 sha256:7057126b34df0ab9a8739a673256b11175d596c2f60967408f41b2bd97fd06f5 17.83MB / 21.82MB 7.3s
#41 sha256:25c2fc68809e3e0590a626635ea1dfe9057df8404d7b1231d6026f51af0fdb49 223B / 223B 0.5s done
#41 sha256:809332e76e8ab5c3eb97a6891c3ea616a08ab4ed45833e4d9e5f6cd2ee7c39b6 1.22MB / 1.22MB 0.7s done
#41 sha256:ba3557a56b150f9b813f9d02274d62914fd8fce120dd374d9ee17b87cf1d277d 2.81MB / 2.81MB 1.4s done
#41 extracting sha256:ba3557a56b150f9b813f9d02274d62914fd8fce120dd374d9ee17b87cf1d277d 1.0s done
#41 extracting sha256:809332e76e8ab5c3eb97a6891c3ea616a08ab4ed45833e4d9e5f6cd2ee7c39b6 0.6s done
#41 extracting sha256:25c2fc68809e3e0590a626635ea1dfe9057df8404d7b1231d6026f51af0fdb49 0.2s done
#41 ...
#157 [e2e-test-server internal] load build context
#157 sha256:96866cf3b154ab3bf19f4c6a31d39f8d8cfec1d00be85167ffc515282015ca91
#157 ...
#45 [test internal] load build context
#45 sha256:3643c8242c1e20d22fdd6dd7f29da594e811b6a881fb08a85902c9ef5088cdef
#45 ...
#189 [apollo-service-push apollo-service-push 1/2] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/apollo-service-push:acaf3bf5b78961b558381c973aa81bbe8a3e8b48@sha256:1f167a293ddf09cd9183a77a720f3b6d1905434c719be477eae61e0693e242f2
#189 sha256:e47cd75359ad435fa9e9a4a8df9115794339a14e9a96d6a840514440faa7d413
#189 resolve 012345678901.dkr.ecr.eu-west-1.amazonaws.com/apollo-service-push:acaf3bf5b78961b558381c973aa81bbe8a3e8b48@sha256:1f167a293ddf09cd9183a77a720f3b6d1905434c719be477eae61e0693e242f2 0.1s done
#189 sha256:e8e84dd999710a04c16e5e93fa929653b79926be16931a418dd84204d2b2b608 413B / 413B 0.6s done
#189 sha256:12ff67647fac1a082b00cce41a6bedbef904d98fab0001a68069ad6fae4bd639 5.87MB / 5.87MB 3.5s done
#189 sha256:400d9ad609617bcf9db2b82951eb9a30c02ebd7d1856c1a1939a9bed20e090a5 10.31MB / 10.31MB 5.1s done
#189 sha256:1883586bfcfebcaf7fc8ba2391f1db89438ccb7432b157226f46d79e1c731c88 47.89kB / 47.89kB 0.8s done
#189 sha256:c8213400659d70d5622806bfe7440d91e131a791757da05a0d7525296a44e935 282B / 282B 0.9s done
#189 sha256:a52efc1dc78d19dc4560f15de4311bd1082529539f7631c48ff8e1a467952fdf 2.36MB / 2.36MB 2.5s done
#189 sha256:42e41b83a174e434ed2217d1b7be2b13771ad3bf396e2b4532fe630df98f37be 3.15MB / 35.91MB 5.0s
#189 ...
#107 [upload-assets upload-assets 1/5] FROM docker.io/amazon/aws-cli:2.0.38@sha256:67e7fc5dec6d782cf1a37cbf6da4a7971a9d441646ac04b4a9ffc0af21a60c11
#107 sha256:ca2a181203b2b332e88d1b624a23ad9e07d84636d51ecd77154eab0fc0d0125c
#107 resolve docker.io/amazon/aws-cli:2.0.38@sha256:67e7fc5dec6d782cf1a37cbf6da4a7971a9d441646ac04b4a9ffc0af21a60c11 0.1s done
#107 sha256:3cf2d07cbbca11902445f57e6365c9fb5a31e92fe8f525d3ef9fc7a3232ad2e1 126B / 126B 0.4s done
#107 sha256:50942d897f992e94b4685b904f45bd52b76bea9a4ef57c61e7592674d596a8dd 211B / 211B 0.3s done
#107 sha256:5988150955c78d228263e2ee75db073f251cbbae8b9879e036f5271b1d66523f 13.63MB / 31.61MB 6.6s
#107 sha256:12ad2aecf25ecc57687aabc01ea39fa31c5e2feca6d83cb7910c5400e26e231a 11.53MB / 16.03MB 6.6s
#107 sha256:37373184fe69e0fc20370c26317bf4c5b9b843c60b375563d4ee1c7766a89782 10.49MB / 61.72MB 6.6s
#107 sha256:12ad2aecf25ecc57687aabc01ea39fa31c5e2feca6d83cb7910c5400e26e231a 12.58MB / 16.03MB 6.7s
#107 ...
#41 [apollo-service-push ruby 1/3] FROM docker.io/library/ruby:2.6.6-alpine3.13@sha256:a92d35609c465172e752fc99ffc94a8acc13d74dbeeec711d1b06158ee66bcea
#41 sha256:42902c0eb7333415e5bc38f3212eba8e0b1e14466d391bb4aefd8ddc93aadab0
#41 sha256:7057126b34df0ab9a8739a673256b11175d596c2f60967408f41b2bd97fd06f5 19.92MB / 21.82MB 7.9s
#41 sha256:7057126b34df0ab9a8739a673256b11175d596c2f60967408f41b2bd97fd06f5 21.82MB / 21.82MB 8.5s
#41 ...
#157 [e2e-test-server internal] load build context
#157 sha256:96866cf3b154ab3bf19f4c6a31d39f8d8cfec1d00be85167ffc515282015ca91
#157 transferring context: 46.21MB 10.8s done
#157 DONE 11.1s
#41 [production ruby 1/3] FROM docker.io/library/ruby:2.6.6-alpine3.13@sha256:a92d35609c465172e752fc99ffc94a8acc13d74dbeeec711d1b06158ee66bcea
#41 sha256:42902c0eb7333415e5bc38f3212eba8e0b1e14466d391bb4aefd8ddc93aadab0
#41 sha256:7057126b34df0ab9a8739a673256b11175d596c2f60967408f41b2bd97fd06f5 21.82MB / 21.82MB 8.6s done
#41 extracting sha256:7057126b34df0ab9a8739a673256b11175d596c2f60967408f41b2bd97fd06f5
#41 ...
#32 [cypress cypress 1/8] FROM docker.io/library/node:14.16.0-buster-slim@sha256:ffc15488e56d99dbc9b90d496aaf47901c6a940c077bc542f675ae351e769a12
#32 sha256:86e3f1848eb3ce3f99069e78ecbbed5fd53c86a4fb79bdcc6dad337914d6991e
#32 sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 27.10MB / 27.10MB 7.8s done
#32 extracting sha256:6f28985ad1843afd6fd4fe0b42a30bfab63c27d302362e7341e3316e8ba25ced 5.4s done
#32 extracting sha256:45d607bea48c064edb346068b2c37344b1fe0353af01c172721a2f2bc8560a7f 0.1s done
#32 DONE 13.3s
#45 [test internal] load build context
#45 sha256:3643c8242c1e20d22fdd6dd7f29da594e811b6a881fb08a85902c9ef5088cdef
#45 transferring context: 51.27MB 11.4s done
#45 DONE 11.6s
#52 [upload-elastic-beanstalk-application-version node 1/4] FROM docker.io/library/node:14.16.0-alpine3.13@sha256:eb2b2be77fbb7515ba116dbf20b55df0523e9d32e0c7b22bb5d625bdd0ad9109
#52 sha256:e4468d87d522bb9aa275f22adb31b176e64d6b1d9656f3f4b38fd555d7445c05
#52 sha256:4c6a069654a591d280d3c34c2757b85ba4993f8a767ed7af629265e81cb27488 285B / 285B 0.4s done
#52 sha256:c15b2225a5a3cd0226e89ba06ce72a6b41cba124a43f77e5bd8c4cfa88dbbc8a 2.36MB / 2.36MB 1.4s done
#52 sha256:efc783669be69f3c0f43b07b629c77dfcfe00269ff66d45663893bef632310de 19.92MB / 35.91MB 8.6s
#52 sha256:efc783669be69f3c0f43b07b629c77dfcfe00269ff66d45663893bef632310de 22.02MB / 35.91MB 9.0s
#52 ...
#41 [upload-assets ruby 1/3] FROM docker.io/library/ruby:2.6.6-alpine3.13@sha256:a92d35609c465172e752fc99ffc94a8acc13d74dbeeec711d1b06158ee66bcea
#41 sha256:42902c0eb7333415e5bc38f3212eba8e0b1e14466d391bb4aefd8ddc93aadab0
#41 extracting sha256:7057126b34df0ab9a8739a673256b11175d596c2f60967408f41b2bd97fd06f5 1.5s done
#41 extracting sha256:9610f3585dbc4d96474ef5be04b88b1b8815349f57110904f1a35cbb963ef572 0.0s done
#41 DONE 10.4s
#52 [upload-elastic-beanstalk-application-version node 1/4] FROM docker.io/library/node:14.16.0-alpine3.13@sha256:eb2b2be77fbb7515ba116dbf20b55df0523e9d32e0c7b22bb5d625bdd0ad9109
#52 sha256:e4468d87d522bb9aa275f22adb31b176e64d6b1d9656f3f4b38fd555d7445c05
#52 ...
#42 [upload-assets ruby 2/3] WORKDIR /ocean
#42 sha256:f8c31909b5318a82df77bd39819dd4aa40fbf7497e0cd8afd5150f508bdc3848
#42 DONE 3.9s
#32 [cypress cypress 1/8] FROM docker.io/library/node:14.16.0-buster-slim@sha256:ffc15488e56d99dbc9b90d496aaf47901c6a940c077bc542f675ae351e769a12
#32 sha256:86e3f1848eb3ce3f99069e78ecbbed5fd53c86a4fb79bdcc6dad337914d6991e
#32 extracting sha256:debb2253e0b943679833a5d51dcd77a8dff68c1691e32122cbfc8d595c25c064 5.1s done
#32 DONE 18.4s
#43 [upload-assets ruby 3/3] RUN set -x && apk --no-cache add libpq tzdata && gem update --system "3.2.14" && gem install bundler --version "2.2.14"
#43 sha256:6b4a9f2629cbfe05bcc066b5d1656fde2377a3ad9cb72576f72e5ad77a51c9cf
#43 ...
#32 [cypress cypress 1/8] FROM docker.io/library/node:14.16.0-buster-slim@sha256:ffc15488e56d99dbc9b90d496aaf47901c6a940c077bc542f675ae351e769a12
#32 sha256:86e3f1848eb3ce3f99069e78ecbbed5fd53c86a4fb79bdcc6dad337914d6991e
#32 extracting sha256:cad99f44853d3d18474a52030b35186bfc61ee10a04fce97974d6a70d06177c3 0.2s done
#32 extracting sha256:92ae742dc5f7a3b0b1e815ff3f9f1be05d6971ccc5ab124a6a30bcae55c03b0e 0.0s done
#32 DONE 18.6s
#43 [upload-assets ruby 3/3] RUN set -x && apk --no-cache add libpq tzdata && gem update --system "3.2.14" && gem install bundler --version "2.2.14"
#43 sha256:6b4a9f2629cbfe05bcc066b5d1656fde2377a3ad9cb72576f72e5ad77a51c9cf
#43 0.260 + apk --no-cache add libpq tzdata
#43 0.196 + apk --no-cache add libpq tzdata
#43 0.482 + apk --no-cache add libpq tzdata
#43 0.127 + apk --no-cache add libpq tzdata
#43 0.167 + apk --no-cache add libpq tzdata
#43 0.227 + apk --no-cache add libpq tzdata
#43 0.238 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/main/x86_64/APKINDEX.tar.gz
#43 0.139 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/main/x86_64/APKINDEX.tar.gz
#43 0.494 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/main/x86_64/APKINDEX.tar.gz
#43 0.207 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/main/x86_64/APKINDEX.tar.gz
#43 0.271 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/main/x86_64/APKINDEX.tar.gz
#43 0.178 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/main/x86_64/APKINDEX.tar.gz
#43 ...
#33 [cypress cypress 2/8] WORKDIR /e2e-tests
#33 sha256:db05e6468145ab0c7aaf335f35b5765a769d84744230d8ce31e788d04769a710
#33 DONE 0.2s
#52 [upload-assets node 1/4] FROM docker.io/library/node:14.16.0-alpine3.13@sha256:eb2b2be77fbb7515ba116dbf20b55df0523e9d32e0c7b22bb5d625bdd0ad9109
#52 sha256:e4468d87d522bb9aa275f22adb31b176e64d6b1d9656f3f4b38fd555d7445c05
#52 sha256:efc783669be69f3c0f43b07b629c77dfcfe00269ff66d45663893bef632310de 35.91MB / 35.91MB 13.6s done
#52 extracting sha256:efc783669be69f3c0f43b07b629c77dfcfe00269ff66d45663893bef632310de
#52 extracting sha256:efc783669be69f3c0f43b07b629c77dfcfe00269ff66d45663893bef632310de 2.6s done
#52 DONE 16.5s
#43 [upload-assets ruby 3/3] RUN set -x && apk --no-cache add libpq tzdata && gem update --system "3.2.14" && gem install bundler --version "2.2.14"
#43 sha256:6b4a9f2629cbfe05bcc066b5d1656fde2377a3ad9cb72576f72e5ad77a51c9cf
#43 1.002 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz
#43 0.942 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz
#43 1.036 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz
#43 0.903 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz
#43 0.971 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz
#43 1.258 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz
#43 1.923 (1/4) Installing libsasl (2.1.27-r10)
#43 2.210 (1/4) Installing libsasl (2.1.27-r10)
#43 1.894 (1/4) Installing libsasl (2.1.27-r10)
#43 1.855 (1/4) Installing libsasl (2.1.27-r10)
#43 1.988 (1/4) Installing libsasl (2.1.27-r10)
#43 1.954 (1/4) Installing libsasl (2.1.27-r10)
#43 1.922 (2/4) Installing libldap (2.4.57-r1)
#43 1.990 (2/4) Installing libldap (2.4.57-r1)
#43 1.961 (2/4) Installing libldap (2.4.57-r1)
#43 2.277 (2/4) Installing libldap (2.4.57-r1)
#43 2.055 (2/4) Installing libldap (2.4.57-r1)
#43 2.021 (2/4) Installing libldap (2.4.57-r1)
#43 2.283 (3/4) Installing libpq (13.2-r0)
#43 2.219 (3/4) Installing libpq (13.2-r0)
#43 2.249 (3/4) Installing libpq (13.2-r0)
#43 2.505 (3/4) Installing libpq (13.2-r0)
#43 2.150 (3/4) Installing libpq (13.2-r0)
#43 2.190 (3/4) Installing libpq (13.2-r0)
#43 2.419 (4/4) Installing tzdata (2021a-r0)
#43 2.386 (4/4) Installing tzdata (2021a-r0)
#43 2.326 (4/4) Installing tzdata (2021a-r0)
#43 2.355 (4/4) Installing tzdata (2021a-r0)
#43 2.287 (4/4) Installing tzdata (2021a-r0)
#43 2.642 (4/4) Installing tzdata (2021a-r0)
#43 ...
#52 [upload-assets node 1/4] FROM docker.io/library/node:14.16.0-alpine3.13@sha256:eb2b2be77fbb7515ba116dbf20b55df0523e9d32e0c7b22bb5d625bdd0ad9109
#52 sha256:e4468d87d522bb9aa275f22adb31b176e64d6b1d9656f3f4b38fd555d7445c05
#52 extracting sha256:efc783669be69f3c0f43b07b629c77dfcfe00269ff66d45663893bef632310de 2.6s done
#52 extracting sha256:c15b2225a5a3cd0226e89ba06ce72a6b41cba124a43f77e5bd8c4cfa88dbbc8a 0.2s done
#52 extracting sha256:4c6a069654a591d280d3c34c2757b85ba4993f8a767ed7af629265e81cb27488 0.0s done
#52 DONE 16.7s
#43 [upload-assets ruby 3/3] RUN set -x && apk --no-cache add libpq tzdata && gem update --system "3.2.14" && gem install bundler --version "2.2.14"
#43 sha256:6b4a9f2629cbfe05bcc066b5d1656fde2377a3ad9cb72576f72e5ad77a51c9cf
#43 3.089 Executing busybox-1.32.1-r3.trigger
#43 2.803 Executing busybox-1.32.1-r3.trigger
#43 2.774 Executing busybox-1.32.1-r3.trigger
#43 2.834 Executing busybox-1.32.1-r3.trigger
#43 2.867 Executing busybox-1.32.1-r3.trigger
#43 2.734 Executing busybox-1.32.1-r3.trigger
#43 3.105 OK: 24 MiB in 40 packages
#43 2.818 OK: 24 MiB in 40 packages
#43 2.789 OK: 24 MiB in 40 packages
#43 2.883 OK: 24 MiB in 40 packages
#43 2.750 OK: 24 MiB in 40 packages
#43 2.849 OK: 24 MiB in 40 packages
#43 2.959 + gem update --system 3.2.14
#43 2.860 + gem update --system 3.2.14
#43 3.215 + gem update --system 3.2.14
#43 2.929 + gem update --system 3.2.14
#43 2.899 + gem update --system 3.2.14
#43 2.993 + gem update --system 3.2.14
#43 ...
#53 [upload-elastic-beanstalk-application-version node 2/4] WORKDIR /frontend
#53 sha256:f45b5382068a7c5259054f1957be8711b4611385b04424950ad28c5a6c1639a1
#53 DONE 0.4s
#54 [apollo-service-push node 3/4] RUN mv "/opt/yarn-v1.22.5" /opt/yarn
#54 sha256:2f7d6e5f62f7bb9af9474d5317ff3b983bd579917c7df1bb9699f0d8eaa61547
#54 DONE 0.2s
#107 [upload-assets upload-assets 1/5] FROM docker.io/amazon/aws-cli:2.0.38@sha256:67e7fc5dec6d782cf1a37cbf6da4a7971a9d441646ac04b4a9ffc0af21a60c11
#107 sha256:ca2a181203b2b332e88d1b624a23ad9e07d84636d51ecd77154eab0fc0d0125c
#107 sha256:5988150955c78d228263e2ee75db073f251cbbae8b9879e036f5271b1d66523f 31.61MB / 31.61MB 12.6s done
#107 sha256:12ad2aecf25ecc57687aabc01ea39fa31c5e2feca6d83cb7910c5400e26e231a 16.03MB / 16.03MB 7.8s done
#107 sha256:37373184fe69e0fc20370c26317bf4c5b9b843c60b375563d4ee1c7766a89782 56.62MB / 61.72MB 16.2s
#107 ...
#54 [e2e-test-server node 3/4] RUN mv "/opt/yarn-v1.22.5" /opt/yarn
#54 sha256:2f7d6e5f62f7bb9af9474d5317ff3b983bd579917c7df1bb9699f0d8eaa61547
#54 DONE 0.2s
#107 [upload-assets upload-assets 1/5] FROM docker.io/amazon/aws-cli:2.0.38@sha256:67e7fc5dec6d782cf1a37cbf6da4a7971a9d441646ac04b4a9ffc0af21a60c11
#107 sha256:ca2a181203b2b332e88d1b624a23ad9e07d84636d51ecd77154eab0fc0d0125c
#107 ...
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 sha256:27eeaa80b9314ba6cac6469ef135a27bfd9b6f8b30b866e48766117130c3df75 28.31MB / 71.80MB 15.5s
#132 ...
#55 [e2e-test-server node 4/4] RUN ln -sf /opt/yarn/bin/yarn /usr/local/bin/yarn && ln -sf /opt/yarn/bin/yarnpkg /usr/local/bin/yarnpkg
#55 sha256:49c0b14ad6cc4d329b3467a637493d84dbdf31b61d1a9abbd5030d317cc087d3
#55 DONE 0.2s
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 ...
#59 [test node-dependencies 1/2] COPY frontend/package.json frontend/yarn.lock ./
#59 sha256:9ca62770958db08ac3e82c6b06bbc929abf2ad4c08520bfd4ffe016e6c031dca
#59 DONE 0.1s
#60 [test node-dependencies 2/2] RUN --mount="type=cache,id=yarn,target=/usr/local/share/.cache/yarn" --mount="type=secret,id=npmrc,target=/frontend/.npmrc" yarn install --frozen-lockfile
#60 sha256:8c7820067094e98c8f23db88e65eef2d788dadacf8b928d1835dd20e0332b0df
#60 ...
#189 [apollo-service-push apollo-service-push 1/2] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/apollo-service-push:acaf3bf5b78961b558381c973aa81bbe8a3e8b48@sha256:1f167a293ddf09cd9183a77a720f3b6d1905434c719be477eae61e0693e242f2
#189 sha256:e47cd75359ad435fa9e9a4a8df9115794339a14e9a96d6a840514440faa7d413
#189 sha256:42e41b83a174e434ed2217d1b7be2b13771ad3bf396e2b4532fe630df98f37be 24.12MB / 35.91MB 15.3s
#189 ...
#107 [upload-assets upload-assets 1/5] FROM docker.io/amazon/aws-cli:2.0.38@sha256:67e7fc5dec6d782cf1a37cbf6da4a7971a9d441646ac04b4a9ffc0af21a60c11
#107 sha256:ca2a181203b2b332e88d1b624a23ad9e07d84636d51ecd77154eab0fc0d0125c
#107 sha256:37373184fe69e0fc20370c26317bf4c5b9b843c60b375563d4ee1c7766a89782 61.72MB / 61.72MB 16.7s done
#107 extracting sha256:37373184fe69e0fc20370c26317bf4c5b9b843c60b375563d4ee1c7766a89782
#107 extracting sha256:37373184fe69e0fc20370c26317bf4c5b9b843c60b375563d4ee1c7766a89782 3.3s done
#107 DONE 20.3s
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 sha256:27eeaa80b9314ba6cac6469ef135a27bfd9b6f8b30b866e48766117130c3df75 42.99MB / 71.80MB 19.1s
#132 sha256:27eeaa80b9314ba6cac6469ef135a27bfd9b6f8b30b866e48766117130c3df75 47.19MB / 71.80MB 19.8s
#132 sha256:27eeaa80b9314ba6cac6469ef135a27bfd9b6f8b30b866e48766117130c3df75 51.38MB / 71.80MB 20.4s
#132 ...
#189 [apollo-service-push apollo-service-push 1/2] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/apollo-service-push:acaf3bf5b78961b558381c973aa81bbe8a3e8b48@sha256:1f167a293ddf09cd9183a77a720f3b6d1905434c719be477eae61e0693e242f2
#189 sha256:e47cd75359ad435fa9e9a4a8df9115794339a14e9a96d6a840514440faa7d413
#189 sha256:42e41b83a174e434ed2217d1b7be2b13771ad3bf396e2b4532fe630df98f37be 35.91MB / 35.91MB 18.7s done
#189 extracting sha256:42e41b83a174e434ed2217d1b7be2b13771ad3bf396e2b4532fe630df98f37be 2.8s done
#189 extracting sha256:a52efc1dc78d19dc4560f15de4311bd1082529539f7631c48ff8e1a467952fdf 0.2s done
#189 extracting sha256:c8213400659d70d5622806bfe7440d91e131a791757da05a0d7525296a44e935 0.0s done
#189 DONE 22.0s
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 ...
#34 [cypress cypress 3/8] RUN apt-get update && apt-get install --assume-yes curl gnupg xvfb && curl --fail --show-error --silent https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' >/etc/apt/sources.list.d/google-chrome.list && apt-get update && apt-get install --assume-yes google-chrome-stable && rm -rf /var/lib/apt/lists/* && google-chrome --version
#34 sha256:474ffb4b1a86fe22956e33b44107c9ac44eccacbbd5459e22182048e5c8ab4e3
#34 0.494 Get:1 http://deb.debian.org/debian buster InRelease [122 kB]
#34 0.521 Get:2 http://security.debian.org/debian-security buster/updates InRelease [65.4 kB]
#34 0.596 Get:3 http://deb.debian.org/debian buster-updates InRelease [51.9 kB]
#34 0.865 Get:4 http://security.debian.org/debian-security buster/updates/main amd64 Packages [269 kB]
#34 1.092 Get:5 http://deb.debian.org/debian buster/main amd64 Packages [7907 kB]
#34 2.379 Get:6 http://deb.debian.org/debian buster-updates/main amd64 Packages [9504 B]
#34 3.950 Fetched 8424 kB in 4s (2295 kB/s)
#34 3.950 Reading package lists...
#34 5.036 Reading package lists...
#34 6.243 Building dependency tree...
#34 6.506 Reading state information...
#34 6.899 The following additional packages will be installed:
#34 6.899 ca-certificates dirmngr gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client
#34 6.899 gpg-wks-server gpgconf gpgsm krb5-locales libassuan0 libbsd0 libcurl4
#34 6.899 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1
#34 6.899 libdrm2 libedit2 libelf1 libexpat1 libfontenc1 libfreetype6 libgl1
#34 6.899 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0
#34 6.899 libgssapi-krb5-2 libice6 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
#34 6.899 libksba8 libldap-2.4-2 libldap-common libllvm7 libnghttp2-14 libnpth0
#34 6.899 libpciaccess0 libpixman-1-0 libpng16-16 libpsl5 libreadline7 librtmp1
#34 6.899 libsasl2-2 libsasl2-modules libsasl2-modules-db libsensors-config
#34 6.899 libsensors5 libsm6 libsqlite3-0 libssh2-1 libssl1.1 libunwind8 libx11-6
#34 6.899 libx11-data libx11-xcb1 libxau6 libxaw7 libxcb-dri2-0 libxcb-dri3-0
#34 6.899 libxcb-glx0 libxcb-present0 libxcb-sync1 libxcb1 libxdamage1 libxdmcp6
#34 6.899 libxext6 libxfixes3 libxfont2 libxkbfile1 libxmu6 libxmuu1 libxpm4
#34 6.900 libxshmfence1 libxt6 libxxf86vm1 openssl pinentry-curses publicsuffix
#34 6.901 readline-common x11-common x11-xkb-utils xauth xfonts-base xfonts-encodings
#34 6.901 xfonts-utils xkb-data xserver-common
#34 6.904 Suggested packages:
#34 6.904 dbus-user-session libpam-systemd pinentry-gnome3 tor parcimonie xloadimage
#34 6.904 scdaemon krb5-doc krb5-user pciutils libsasl2-modules-gssapi-mit
#34 6.904 | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
#34 6.904 libsasl2-modules-sql lm-sensors pinentry-doc readline-doc
#34 7.941 The following NEW packages will be installed:
#34 7.941 ca-certificates curl dirmngr gnupg gnupg-l10n gnupg-utils gpg gpg-agent
#34 7.944 gpg-wks-client gpg-wks-server gpgconf gpgsm krb5-locales libassuan0 libbsd0
#34 7.944 libcurl4 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2
#34 7.944 libdrm-radeon1 libdrm2 libedit2 libelf1 libexpat1 libfontenc1 libfreetype6
#34 7.944 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0
#34 7.944 libgssapi-krb5-2 libice6 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
#34 7.945 libksba8 libldap-2.4-2 libldap-common libllvm7 libnghttp2-14 libnpth0
#34 7.945 libpciaccess0 libpixman-1-0 libpng16-16 libpsl5 libreadline7 librtmp1
#34 7.945 libsasl2-2 libsasl2-modules libsasl2-modules-db libsensors-config
#34 7.945 libsensors5 libsm6 libsqlite3-0 libssh2-1 libssl1.1 libunwind8 libx11-6
#34 7.945 libx11-data libx11-xcb1 libxau6 libxaw7 libxcb-dri2-0 libxcb-dri3-0
#34 7.945 libxcb-glx0 libxcb-present0 libxcb-sync1 libxcb1 libxdamage1 libxdmcp6
#34 7.945 libxext6 libxfixes3 libxfont2 libxkbfile1 libxmu6 libxmuu1 libxpm4
#34 7.946 libxshmfence1 libxt6 libxxf86vm1 openssl pinentry-curses publicsuffix
#34 7.947 readline-common x11-common x11-xkb-utils xauth xfonts-base xfonts-encodings
#34 7.947 xfonts-utils xkb-data xserver-common xvfb
#34 8.086 0 upgraded, 97 newly installed, 0 to remove and 0 not upgraded.
#34 8.086 Need to get 51.0 MB of archives.
#34 8.086 After this operation, 275 MB of additional disk space will be used.
#34 8.086 Get:1 http://deb.debian.org/debian buster/main amd64 readline-common all 7.0-5 [70.6 kB]
#34 8.093 Get:2 http://security.debian.org/debian-security buster/updates/main amd64 libssl1.1 amd64 1.1.1d-0+deb10u5 [1539 kB]
#34 8.126 Get:3 http://deb.debian.org/debian buster/main amd64 krb5-locales all 1.17-3+deb10u1 [95.4 kB]
#34 8.153 Get:4 http://deb.debian.org/debian buster/main amd64 libsasl2-modules-db amd64 2.1.27+dfsg-1+deb10u1 [69.1 kB]
#34 8.163 Get:5 http://deb.debian.org/debian buster/main amd64 libsasl2-2 amd64 2.1.27+dfsg-1+deb10u1 [106 kB]
#34 8.188 Get:6 http://deb.debian.org/debian buster/main amd64 ca-certificates all 20200601~deb10u2 [166 kB]
#34 8.228 Get:7 http://deb.debian.org/debian buster/main amd64 libkeyutils1 amd64 1.6-6 [15.0 kB]
#34 8.229 Get:8 http://deb.debian.org/debian buster/main amd64 libkrb5support0 amd64 1.17-3+deb10u1 [65.8 kB]
#34 8.234 Get:9 http://deb.debian.org/debian buster/main amd64 libk5crypto3 amd64 1.17-3+deb10u1 [122 kB]
#34 8.241 Get:10 http://deb.debian.org/debian buster/main amd64 libkrb5-3 amd64 1.17-3+deb10u1 [369 kB]
#34 8.310 Get:11 http://deb.debian.org/debian buster/main amd64 libgssapi-krb5-2 amd64 1.17-3+deb10u1 [158 kB]
#34 8.315 Get:12 http://deb.debian.org/debian buster/main amd64 libnghttp2-14 amd64 1.36.0-2+deb10u1 [85.0 kB]
#34 8.326 Get:13 http://deb.debian.org/debian buster/main amd64 libpsl5 amd64 0.20.2-2 [53.7 kB]
#34 8.328 Get:14 http://deb.debian.org/debian buster/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2 [60.5 kB]
#34 8.334 Get:15 http://deb.debian.org/debian buster/main amd64 libssh2-1 amd64 1.8.0-2.1 [140 kB]
#34 8.379 Get:16 http://deb.debian.org/debian buster/main amd64 libcurl4 amd64 7.64.0-4+deb10u1 [331 kB]
#34 8.403 Get:17 http://deb.debian.org/debian buster/main amd64 curl amd64 7.64.0-4+deb10u1 [264 kB]
#34 8.413 Get:18 http://deb.debian.org/debian buster/main amd64 libassuan0 amd64 2.5.2-1 [49.4 kB]
#34 8.418 Get:19 http://deb.debian.org/debian buster/main amd64 libreadline7 amd64 7.0-5 [151 kB]
#34 8.427 Get:20 http://deb.debian.org/debian buster/main amd64 gpgconf amd64 2.2.12-1+deb10u1 [510 kB]
#34 8.461 Get:21 http://security.debian.org/debian-security buster/updates/main amd64 libldap-common all 2.4.47+dfsg-3+deb10u6 [90.0 kB]
#34 8.469 Get:22 http://security.debian.org/debian-security buster/updates/main amd64 libldap-2.4-2 amd64 2.4.47+dfsg-3+deb10u6 [224 kB]
#34 8.488 Get:23 http://security.debian.org/debian-security buster/updates/main amd64 openssl amd64 1.1.1d-0+deb10u5 [844 kB]
#34 8.576 Get:24 http://deb.debian.org/debian buster/main amd64 libksba8 amd64 1.3.5-2 [99.7 kB]
#34 8.576 Get:25 http://deb.debian.org/debian buster/main amd64 libnpth0 amd64 1.6-1 [18.4 kB]
#34 8.579 Get:26 http://deb.debian.org/debian buster/main amd64 dirmngr amd64 2.2.12-1+deb10u1 [712 kB]
#34 8.601 Get:27 http://deb.debian.org/debian buster/main amd64 gnupg-l10n all 2.2.12-1+deb10u1 [1010 kB]
#34 8.643 Get:28 http://deb.debian.org/debian buster/main amd64 gnupg-utils amd64 2.2.12-1+deb10u1 [861 kB]
#34 8.717 Get:29 http://deb.debian.org/debian buster/main amd64 libsqlite3-0 amd64 3.27.2-3+deb10u1 [641 kB]
#34 8.742 Get:30 http://deb.debian.org/debian buster/main amd64 gpg amd64 2.2.12-1+deb10u1 [865 kB]
#34 8.789 Get:31 http://deb.debian.org/debian buster/main amd64 pinentry-curses amd64 1.1.0-2 [64.5 kB]
#34 8.796 Get:32 http://deb.debian.org/debian buster/main amd64 gpg-agent amd64 2.2.12-1+deb10u1 [617 kB]
#34 8.820 Get:33 http://deb.debian.org/debian buster/main amd64 gpg-wks-client amd64 2.2.12-1+deb10u1 [485 kB]
#34 8.832 Get:34 http://deb.debian.org/debian buster/main amd64 gpg-wks-server amd64 2.2.12-1+deb10u1 [478 kB]
#34 8.854 Get:35 http://deb.debian.org/debian buster/main amd64 gpgsm amd64 2.2.12-1+deb10u1 [604 kB]
#34 8.902 Get:36 http://deb.debian.org/debian buster/main amd64 gnupg all 2.2.12-1+deb10u1 [715 kB]
#34 8.961 Get:37 http://deb.debian.org/debian buster/main amd64 libbsd0 amd64 0.9.1-2 [99.5 kB]
#34 8.966 Get:38 http://deb.debian.org/debian buster/main amd64 libdrm-common all 2.4.97-1 [13.8 kB]
#34 8.967 Get:39 http://deb.debian.org/debian buster/main amd64 libdrm2 amd64 2.4.97-1 [39.7 kB]
#34 8.971 Get:40 http://deb.debian.org/debian buster/main amd64 libdrm-amdgpu1 amd64 2.4.97-1 [27.3 kB]
#34 8.973 Get:41 http://deb.debian.org/debian buster/main amd64 libpciaccess0 amd64 0.14-1 [53.5 kB]
#34 8.976 Get:42 http://deb.debian.org/debian buster/main amd64 libdrm-intel1 amd64 2.4.97-1 [69.8 kB]
#34 8.978 Get:43 http://deb.debian.org/debian buster/main amd64 libdrm-nouveau2 amd64 2.4.97-1 [26.3 kB]
#34 8.980 Get:44 http://deb.debian.org/debian buster/main amd64 libdrm-radeon1 amd64 2.4.97-1 [31.1 kB]
#34 8.982 Get:45 http://deb.debian.org/debian buster/main amd64 libedit2 amd64 3.1-20181209-1 [94.0 kB]
#34 9.004 Get:46 http://deb.debian.org/debian buster/main amd64 libelf1 amd64 0.176-1.1 [161 kB]
#34 9.022 Get:47 http://deb.debian.org/debian buster/main amd64 libexpat1 amd64 2.2.6-2+deb10u1 [106 kB]
#34 9.025 Get:48 http://deb.debian.org/debian buster/main amd64 libfontenc1 amd64 1:1.1.3-1+b2 [24.4 kB]
#34 9.030 Get:49 http://deb.debian.org/debian buster/main amd64 libpng16-16 amd64 1.6.36-6 [292 kB]
#34 9.058 Get:50 http://deb.debian.org/debian buster/main amd64 libfreetype6 amd64 2.9.1-3+deb10u2 [380 kB]
#34 9.079 Get:51 http://deb.debian.org/debian buster/main amd64 libglapi-mesa amd64 18.3.6-2+deb10u1 [66.3 kB]
#34 9.083 Get:52 http://deb.debian.org/debian buster/main amd64 libllvm7 amd64 1:7.0.1-8+deb10u2 [13.1 MB]
#34 ...
#132 [upload-elastic-beanstalk-application-version upload-elastic-beanstalk-application-version 1/5] FROM 012345678901.dkr.ecr.eu-west-1.amazonaws.com/zenploy:1.0.26-aws@sha256:512c30f7b250d27b4a0c906978d2bd41ee9405ef5afd1676bfbac3ca9fe56302
#132 sha256:ac7a40e26cea1fac43c84a15771fcc20972bef41f0aa77ae4cf7ef2d8df980a2
#132 sha256:27eeaa80b9314ba6cac6469ef135a27bfd9b6f8b30b866e48766117130c3df75 55.57MB / 71.80MB 22.5s
#132 ...
#107 [upload-assets upload-assets 1/5] FROM docker.io/amazon/aws-cli:2.0.38@sha256:67e7fc5dec6d782cf1a37cbf6da4a7971a9d441646ac04b4a9ffc0af21a60c11
#107 sha256:ca2a181203b2b332e88d1b624a23ad9e07d84636d51ecd77154eab0fc0d0125c
#107 extracting sha256:12ad2aecf25ecc57687aabc01ea39fa31c5e2feca6d83cb7910c5400e26e231a 1.5s done
#107 extracting sha256:5988150955c78d228263e2ee75db073f251cbbae8b9879e036f5271b1d66523f 2.9s done
#107 DONE 24.7s
#107 [upload-assets upload-assets 1/5] FROM docker.io/amazon/aws-cli:2.0.38@sha256:67e7fc5dec6d782cf1a37cbf6da4a7971a9d441646ac04b4a9ffc0af21a60c11
#107 sha256:ca2a181203b2b332e88d1b624a23ad9e07d84636d51ecd77154eab0fc0d0125c
#107 extracting sha256:50942d897f992e94b4685b904f45bd52b76bea9a4ef57c61e7592674d596a8dd 0.0s done
#107 extracting sha256:3cf2d07cbbca11902445f57e6365c9fb5a31e92fe8f525d3ef9fc7a3232ad2e1 0.0s done
#107 DONE 24.8s
#34 [cypress cypress 3/8] RUN apt-get update && apt-get install --assume-yes curl gnupg xvfb && curl --fail --show-error --silent https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' >/etc/apt/sources.list.d/google-chrome.list && apt-get update && apt-get install --assume-yes google-chrome-stable && rm -rf /var/lib/apt/lists/* && google-chrome --version
#34 sha256:474ffb4b1a86fe22956e33b44107c9ac44eccacbbd5459e22182048e5c8ab4e3
#34 10.13 Get:53 http://deb.debian.org/debian buster/main amd64 libsensors-config all 1:3.5.0-3 [31.6 kB]
#34 10.14 Get:54 http://deb.debian.org/debian buster/main amd64 libsensors5 amd64 1:3.5.0-3 [52.6 kB]
#34 10.15 Get:55 http://deb.debian.org/debian buster/main amd64 libgl1-mesa-dri amd64 18.3.6-2+deb10u1 [6685 kB]
#34 10.59 Get:56 http://deb.debian.org/debian buster/main amd64 libglvnd0 amd64 1.1.0-1 [48.6 kB]
#34 10.60 Get:57 http://deb.debian.org/debian buster/main amd64 libxau6 amd64 1:1.0.8-1+b2 [19.9 kB]
#34 10.60 Get:58 http://deb.debian.org/debian buster/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB]
#34 10.61 Get:59 http://deb.debian.org/debian buster/main amd64 libxcb1 amd64 1.13.1-2 [137 kB]
#34 10.62 Get:60 http://deb.debian.org/debian buster/main amd64 libx11-data all 2:1.6.7-1+deb10u1 [294 kB]
#34 10.63 Get:61 http://deb.debian.org/debian buster/main amd64 libx11-6 amd64 2:1.6.7-1+deb10u1 [757 kB]
#34 10.64 Get:62 http://deb.debian.org/debian buster/main amd64 libx11-xcb1 amd64 2:1.6.7-1+deb10u1 [190 kB]
#34 10.66 Get:63 http://deb.debian.org/debian buster/main amd64 libxcb-dri2-0 amd64 1.13.1-2 [101 kB]
#34 10.67 Get:64 http://deb.debian.org/debian buster/main amd64 libxcb-dri3-0 amd64 1.13.1-2 [100 kB]
#34 10.67 Get:65 http://deb.debian.org/debian buster/main amd64 libxcb-glx0 amd64 1.13.1-2 [116 kB]
#34 10.68 Get:66 http://deb.debian.org/debian buster/main amd64 libxcb-present0 amd64 1.13.1-2 [99.1 kB]
#34 10.69 Get:67 http://deb.debian.org/debian buster/main amd64 libxcb-sync1 amd64 1.13.1-2 [103 kB]
#34 10.69 Get:68 http://deb.debian.org/debian buster/main amd64 libxfixes3 amd64 1:5.0.3-1 [21.9 kB]
#34 10.69 Get:69 http://deb.debian.org/debian buster/main amd64 libxdamage1 amd64 1:1.1.4-3+b3 [14.9 kB]
#34 10.69 Get:70 http://deb.debian.org/debian buster/main amd64 libxext6 amd64 2:1.3.3-1+b2 [52.5 kB]
#34 10.71 Get:71 http://deb.debian.org/debian buster/main amd64 libxshmfence1 amd64 1.3-1 [8820 B]
#34 10.71 Get:72 http://deb.debian.org/debian buster/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB]
#34 10.71 Get:73 http://deb.debian.org/debian buster/main amd64 libglx-mesa0 amd64 18.3.6-2+deb10u1 [180 kB]
#34 10.72 Get:74 http://deb.debian.org/debian buster/main amd64 x11-common all 1:7.7+19 [251 kB]
#34 10.74 Get:75 http://deb.debian.org/debian buster/main amd64 libice6 amd64 2:1.0.9-2 [58.7 kB]
#34 10.74 Get:76 http://deb.debian.org/debian buster/main amd64 libpixman-1-0 amd64 0.36.0-1 [537 kB]
#34 10.76 Get:77 http://deb.debian.org/debian buster/main amd64 libsasl2-modules amd64 2.1.27+dfsg-1+deb10u1 [104 kB]
#34 10.77 Get:78 http://deb.debian.org/debian buster/main amd64 libsm6 amd64 2:1.2.3-1 [35.1 kB]
#34 10.77 Get:79 http://deb.debian.org/debian buster/main amd64 libunwind8 amd64 1.2.1-10~deb10u1 [51.1 kB]
#34 10.78 Get:80 http://deb.debian.org/debian buster/main amd64 libxt6 amd64 1:1.1.5-1+b3 [190 kB]
#34 10.78 Get:81 http://deb.debian.org/debian buster/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB]
#34 10.80 Get:82 http://deb.debian.org/debian buster/main amd64 libxpm4 amd64 1:3.5.12-1 [49.1 kB]
#34 10.80 Get:83 http://deb.debian.org/debian buster/main amd64 libxaw7 amd64 2:1.0.13-1+b2 [201 kB]
#34 10.82 Get:84 http://deb.debian.org/debian buster/main amd64 libxfont2 amd64 1:2.0.3-1 [135 kB]
#34 10.83 Get:85 http://deb.debian.org/debian buster/main amd64 libxkbfile1 amd64 1:1.0.9-2+b11 [76.0 kB]
#34 10.84 Get:86 http://deb.debian.org/debian buster/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB]
#34 10.84 Get:87 http://deb.debian.org/debian buster/main amd64 publicsuffix all 20190415.1030-1 [116 kB]
#34 10.85 Get:88 http://deb.debian.org/debian buster/main amd64 x11-xkb-utils amd64 7.7+4 [164 kB]
#34 10.86 Get:89 http://deb.debian.org/debian buster/main amd64 xauth amd64 1:1.0.10-1 [40.3 kB]
#34 10.86 Get:90 http://deb.debian.org/debian buster/main amd64 xfonts-encodings all 1:1.0.4-2 [574 kB]
#34 10.89 Get:91 http://deb.debian.org/debian buster/main amd64 xfonts-utils amd64 1:7.7+6 [93.0 kB]
#34 10.90 Get:92 http://deb.debian.org/debian buster/main amd64 xfonts-base all 1:1.0.5 [5897 kB]
#34 11.39 Get:93 http://deb.debian.org/debian buster/main amd64 xkb-data all 2.26-2 [681 kB]
#34 11.49 Get:94 http://deb.debian.org/debian buster/main amd64 xserver-common all 2:1.20.4-1+deb10u2 [2235 kB]
#34 11.72 Get:95 http://deb.debian.org/debian buster/main amd64 libglx0 amd64 1.1.0-1 [30.0 kB]
#34 11.73 Get:96 http://deb.debian.org/debian buster/main amd64 libgl1 amd64 1.1.0-1 [91.1 kB]
#34 11.73 Get:97 http://deb.debian.org/debian buster/main amd64 xvfb amd64 2:1.20.4-1+deb10u2 [2988 kB]
#34 ...
#108 [upload-assets upload-assets 2/5] WORKDIR /ocean
#108 sha256:79360ada839762039c901076876aeab51e79a84aeff6d56f2aa9e4d09896c24c
#108 DONE 1.4s
#34 [cypress cypress 3/8] RUN apt-get update && apt-get install --assume-yes curl gnupg xvfb && curl --fail --show-error --silent https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' >/etc/apt/sources.list.d/google-chrome.list && apt-get update && apt-get install --assume-yes google-chrome-stable && rm -rf /var/lib/apt/lists/* && google-chrome --version
#34 sha256:474ffb4b1a86fe22956e33b44107c9ac44eccacbbd5459e22182048e5c8ab4e3
#34 12.78 debconf: delaying package configuration, since apt-utils is not installed
#34 ...
#110 [upload-assets upload-assets 3/5] COPY docker/bin/upload-assets /usr/local/bin/
#110 sha256:17e1abbe5c151817191d30d8d994a51c417eaf0de28aaedddf2da219a788b4a5
#110 DONE 0.2s
#34 [cypress cypress 3/8] RUN apt-get update && apt-get install --assume-yes curl gnupg xvfb && curl --fail --show-error --silent https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' >/etc/apt/sources.list.d/google-chrome.list && apt-get update && apt-get install --assume-yes google-chrome-stable && rm -rf /var/lib/apt/lists/* && google-chrome --version
#34 sha256:474ffb4b1a86fe22956e33b44107c9ac44eccacbbd5459e22182048e5c8ab4e3
#34 12.90 Fetched 51.0 MB in 4s (12.7 MB/s)
#34 13.00 Selecting previously unselected package libssl1.1:amd64.
(Reading database ... 6469 files and directories currently installed.)
#34 13.00 Preparing to unpack .../00-libssl1.1_1.1.1d-0+deb10u5_amd64.deb ...
#34 13.02 Unpacking libssl1.1:amd64 (1.1.1d-0+deb10u5) ...
#34 13.29 Selecting previously unselected package readline-common.
#34 13.29 Preparing to unpack .../01-readline-common_7.0-5_all.deb ...
#34 13.30 Unpacking readline-common (7.0-5) ...
#34 13.36 Selecting previously unselected package krb5-locales.
#34 13.37 Preparing to unpack .../02-krb5-locales_1.17-3+deb10u1_all.deb ...
#34 13.37 Unpacking krb5-locales (1.17-3+deb10u1) ...
#34 13.45 Selecting previously unselected package libsasl2-modules-db:amd64.
#34 13.45 Preparing to unpack .../03-libsasl2-modules-db_2.1.27+dfsg-1+deb10u1_amd64.deb ...
#34 13.46 Unpacking libsasl2-modules-db:amd64 (2.1.27+dfsg-1+deb10u1) ...
#34 13.52 Selecting previously unselected package libsasl2-2:amd64.
#34 13.52 Preparing to unpack .../04-libsasl2-2_2.1.27+dfsg-1+deb10u1_amd64.deb ...
#34 13.53 Unpacking libsasl2-2:amd64 (2.1.27+dfsg-1+deb10u1) ...
#34 13.60 Selecting previously unselected package libldap-common.
#34 13.60 Preparing to unpack .../05-libldap-common_2.4.47+dfsg-3+deb10u6_all.deb ...
#34 13.61 Unpacking libldap-common (2.4.47+dfsg-3+deb10u6) ...
#34 13.69 Selecting previously unselected package libldap-2.4-2:amd64.
#34 13.70 Preparing to unpack .../06-libldap-2.4-2_2.4.47+dfsg-3+deb10u6_amd64.deb ...
#34 13.71 Unpacking libldap-2.4-2:amd64 (2.4.47+dfsg-3+deb10u6) ...
#34 13.83 Selecting previously unselected package openssl.
#34 13.83 Preparing to unpack .../07-openssl_1.1.1d-0+deb10u5_amd64.deb ...
#34 13.84 Unpacking openssl (1.1.1d-0+deb10u5) ...
#34 14.06 Selecting previously unselected package ca-certificates.
#34 14.06 Preparing to unpack .../08-ca-certificates_20200601~deb10u2_all.deb ...
#34 14.07 Unpacking ca-certificates (20200601~deb10u2) ...
#34 ...
#60 [test node-dependencies 2/2] RUN --mount="type=cache,id=yarn,target=/usr/local/share/.cache/yarn" --mount="type=secret,id=npmrc,target=/frontend/.npmrc" yarn install --frozen-lockfile
#60 sha256:8c7820067094e98c8f23db88e65eef2d788dadacf8b928d1835dd20e0332b0df
#60 0.868 yarn install v1.22.5
#60 1.363 [1/4] Resolving packages...
#60 5.648 [2/4] Fetching packages...
#60 ...
#43 [e2e-test-server ruby 3/3] RUN set -x && apk --no-cache add libpq tzdata && gem update --system "3.2.14" && gem install bundler --version "2.2.14"
#43 sha256:6b4a9f2629cbfe05bcc066b5d1656fde2377a3ad9cb72576f72e5ad77a51c9cf
#43 11.12 Updating rubygems-update
#43 11.12 Successfully installed rubygems-update-3.2.14
#43 11.12 Installing RubyGems 3.2.14
#43 11.09 Updating rubygems-update
#43 11.09 Successfully installed rubygems-update-3.2.14
#43 11.09 Installing RubyGems 3.2.14
#43 10.99 Updating rubygems-update
#43 10.99 Successfully installed rubygems-update-3.2.14
#43 10.99 Installing RubyGems 3.2.14
#43 11.34 Updating rubygems-update
#43 11.34 Successfully installed rubygems-update-3.2.14
#43 11.34 Installing RubyGems 3.2.14
#43 11.06 Updating rubygems-update
#43 11.06 Successfully installed rubygems-update-3.2.14
#43 11.06 Installing RubyGems 3.2.14
#43 11.03 Updating rubygems-update
#43 11.03 Successfully installed rubygems-update-3.2.14
#43 11.03 Installing RubyGems 3.2.14
#43 12.63 Successfully built RubyGem
#43 12.63 Name: bundler
#43 12.63 Version: 2.2.14
#43 12.63 File: bundler-2.2.14.gem
#43 12.63 Bundler 2.2.14 installed
#43 12.63 RubyGems 3.2.14 installed
#43 12.63 Regenerating binstubs
#43 12.63 Regenerating plugins
#43 12.63
#43 12.63 # 3.2.14 / 2021-03-08
#43 12.63
#43 12.63 ## Enhancements:
#43 12.63
#43 12.63 * Less wrapping of network errors. Pull request #4064 by deivid-rodriguez
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Revert addition of support for `musl` variants to restore graceful
#43 12.63 fallback on Alpine. Pull request #4434 by deivid-rodriguez
#43 12.63
#43 12.63 # 3.2.13 / 2021-03-03
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Support non-gnu libc linux platforms. Pull request #4082 by lloeki
#43 12.63
#43 12.63 # 3.2.12 / 2021-03-01
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Restore the ability to manually install extension gems. Pull request
#43 12.63 #4384 by cfis
#43 12.63
#43 12.63 # 3.2.11 / 2021-02-17
#43 12.63
#43 12.63 ## Enhancements:
#43 12.63
#43 12.63 * Optionally fallback to IPv4 when IPv6 is unreachable. Pull request #2662
#43 12.63 by sonalkr132
#43 12.63
#43 12.63 # 3.2.10 / 2021-02-15
#43 12.63
#43 12.63 ## Documentation:
#43 12.63
#43 12.63 * Add a `gem push` example to `gem help`. Pull request #4373 by
#43 12.63 deivid-rodriguez
#43 12.63 * Improve documentation for `required_ruby_version`. Pull request #4343 by
#43 12.63 AlexWayfer
#43 12.63
#43 12.63 # 3.2.9 / 2021-02-08
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Fix error message when underscore selection can't find bundler. Pull
#43 12.63 request #4363 by deivid-rodriguez
#43 12.63 * Fix `Gem::Specification.stubs_for` returning wrong named specs. Pull
#43 12.63 request #4356 by tompng
#43 12.63 * Don't error out when activating a binstub unless necessary. Pull request
#43 12.63 #4351 by deivid-rodriguez
#43 12.63 * Fix `gem outdated` incorrectly handling platform specific gems. Pull
#43 12.63 request #4248 by deivid-rodriguez
#43 12.63
#43 12.63 # 3.2.8 / 2021-02-02
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Fix `gem install` crashing on gemspec with nil required_ruby_version.
#43 12.63 Pull request #4334 by pbernays
#43 12.63
#43 12.63 # 3.2.7 / 2021-01-26
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Generate plugin wrappers with relative requires. Pull request #4317 by
#43 12.63 deivid-rodriguez
#43 12.63
#43 12.63 # 3.2.6 / 2021-01-18
#43 12.63
#43 12.63 ## Enhancements:
#43 12.63
#43 12.63 * Fix `Gem::Platform#inspect` showing duplicate information. Pull request
#43 12.63 #4276 by deivid-rodriguez
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Swallow any system call error in `ensure_gem_subdirs` to support jruby
#43 12.63 embedded paths. Pull request #4291 by kares
#43 12.63 * Restore accepting custom make command with extra options as the `make`
#43 12.63 env variable. Pull request #4271 by terceiro
#43 12.63
#43 12.63 # 3.2.5 / 2021-01-11
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Don't load more specs after the whole set of specs has been setup. Pull
#43 12.63 request #4262 by deivid-rodriguez
#43 12.63 * Fix broken `bundler` executable after `gem update --system`. Pull
#43 12.63 request #4221 by deivid-rodriguez
#43 12.63
#43 12.63 # 3.2.4 / 2020-12-31
#43 12.63
#43 12.63 ## Enhancements:
#43 12.63
#43 12.63 * Use a CHANGELOG in markdown for rubygems. Pull request #4168 by
#43 12.63 deivid-rodriguez
#43 12.63 * Never spawn subshells when building extensions. Pull request #4190 by
#43 12.63 deivid-rodriguez
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Fix fallback to the old index and installation from it not working. Pull
#43 12.63 request #4213 by deivid-rodriguez
#43 12.63 * Fix installing from source on truffleruby. Pull request #4201 by
#43 12.63 deivid-rodriguez
#43 12.63
#43 12.63 # 3.2.3 / 2020-12-22
#43 12.63
#43 12.63 ## Enhancements:
#43 12.63
#43 12.63 * Fix misspellings in default API key name. Pull request #4177 by hsbt
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Respect `required_ruby_version` and `required_rubygems_version`
#43 12.63 constraints when looking for `gem install` candidates. Pull request #4110
#43 12.63 by deivid-rodriguez
#43 12.63
#43 12.63 # 3.2.2 / 2020-12-17
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Fix issue where CLI commands making more than one request to
#43 12.63 rubygems.org needing an OTP code would crash or ask for the code twice.
#43 12.63 Pull request #4162 by sonalkr132
#43 12.63 * Fix building rake extensions that require openssl. Pull request #4165 by
#43 12.63 deivid-rodriguez
#43 12.63 * Fix `gem update --system` displaying too many changelog entries. Pull
#43 12.63 request #4145 by deivid-rodriguez
#43 12.63
#43 12.63 # 3.2.1 / 2020-12-14
#43 12.63
#43 12.63 ## Enhancements:
#43 12.63
#43 12.63 * Added help message for gem i webrick in gem server command. Pull request
#43 12.63 #4117 by hsbt
#43 12.63
#43 12.63 ## Bug fixes:
#43 12.63
#43 12.63 * Added the missing loading of fileutils same as load_specs. Pull request
#43 12.63 #4124 by hsbt
#43 12.63 * Fix Resolver::APISet to always include prereleases when necessary. Pull
#43 12.63 request #4113 by deivid-rodriguez
#43 12.63
#43 12.63 # 3.2.0 / 2020-12-07
#43 12.63
#43 12.63 ## Enhancements:
#43 12.63
#43 12.63 * Do not override Kernel#warn when there is no need. Pull request #4075 by
#43 12.63 eregon
#43 12.63 * Update endpoint of gem signin command. Pull request #3840 by sonalkr132