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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254 |
+ cd slidge-whatsapp
+ for PYTHONVER in 3.11
+ docker buildx build . --target wheel -o ./dist-mess/ --platform linux/amd64 --build-arg PYTHONVER=3.11
#0 building with "intelligent_shtern" instance using docker-container driver
#1 [internal] booting buildkit
#1 pulling image moby/buildkit:buildx-stable-1
#1 pulling image moby/buildkit:buildx-stable-1 3.8s done
#1 creating container buildx_buildkit_intelligent_shtern0
#1 creating container buildx_buildkit_intelligent_shtern0 0.2s done
#1 DONE 4.0s
#2 [internal] load build definition from Dockerfile
#2 transferring dockerfile: 2.62kB done
#2 WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 85)
#2 DONE 0.0s
#3 [internal] load metadata for docker.io/library/python:3.11-bookworm
#3 ...
#4 [auth] library/python:pull token for registry-1.docker.io
#4 DONE 0.0s
#3 [internal] load metadata for docker.io/library/python:3.11-bookworm
#3 DONE 1.2s
#5 [internal] load .dockerignore
#5 transferring context: 2B done
#5 DONE 0.0s
#6 [internal] load build context
#6 transferring context: 369.01kB 0.0s done
#6 DONE 0.0s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:f7543d9969bdc112dd9819ca642e14433fdacfe857f170f6b803392fc7e451ad
#7 resolve docker.io/library/python:3.11-bookworm@sha256:f7543d9969bdc112dd9819ca642e14433fdacfe857f170f6b803392fc7e451ad done
#7 sha256:8a962627486923420564f81706c5e3fe142807f066b4d279ad7ca821667761d6 3.13MB / 3.13MB 0.1s done
#7 sha256:08f524b859488acd9bfa91774287d22a7a740761abbbfd79c914171b33508bad 237B / 237B 0.2s done
#7 sha256:86eeafd0d69e4790943e3a95c810bd84dd1bdbd2e72b3bb5f516f36efb3cbb4d 0B / 19.83MB 0.2s
#7 sha256:00683c1a0086a31822e73abd9b7fa8fac88afc579ba4ad8cf366c8043d8356a3 0B / 6.16MB 0.2s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 0B / 211.24MB 0.2s
#7 sha256:00683c1a0086a31822e73abd9b7fa8fac88afc579ba4ad8cf366c8043d8356a3 6.16MB / 6.16MB 0.3s done
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 18.87MB / 211.24MB 0.3s
#7 sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c 0B / 64.14MB 0.2s
#7 sha256:86eeafd0d69e4790943e3a95c810bd84dd1bdbd2e72b3bb5f516f36efb3cbb4d 19.83MB / 19.83MB 0.4s done
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 47.19MB / 211.24MB 0.5s
#7 sha256:3cbbe86a28c2f6b3c3e0e8c6dcfba369e1ea656cf8daf69be789e0fe2105982b 6.29MB / 24.05MB 0.2s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 72.35MB / 211.24MB 0.6s
#7 sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c 16.78MB / 64.14MB 0.5s
#7 sha256:3cbbe86a28c2f6b3c3e0e8c6dcfba369e1ea656cf8daf69be789e0fe2105982b 24.05MB / 24.05MB 0.3s done
#7 sha256:903681d87777d28dc56866a07a2774c3fd5bf65fd734b24c9d0ecd9a13c9f636 2.10MB / 49.55MB 0.2s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 95.42MB / 211.24MB 0.8s
#7 sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c 37.08MB / 64.14MB 0.6s
#7 sha256:903681d87777d28dc56866a07a2774c3fd5bf65fd734b24c9d0ecd9a13c9f636 27.26MB / 49.55MB 0.3s
#7 sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c 64.14MB / 64.14MB 0.8s done
#7 sha256:903681d87777d28dc56866a07a2774c3fd5bf65fd734b24c9d0ecd9a13c9f636 49.55MB / 49.55MB 0.5s done
#7 extracting sha256:903681d87777d28dc56866a07a2774c3fd5bf65fd734b24c9d0ecd9a13c9f636
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 121.63MB / 211.24MB 0.9s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 149.95MB / 211.24MB 1.1s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 186.65MB / 211.24MB 1.2s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 211.24MB / 211.24MB 1.4s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 211.24MB / 211.24MB 1.5s done
#7 extracting sha256:903681d87777d28dc56866a07a2774c3fd5bf65fd734b24c9d0ecd9a13c9f636 1.3s done
#7 DONE 2.3s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:f7543d9969bdc112dd9819ca642e14433fdacfe857f170f6b803392fc7e451ad
#7 extracting sha256:3cbbe86a28c2f6b3c3e0e8c6dcfba369e1ea656cf8daf69be789e0fe2105982b
#7 extracting sha256:3cbbe86a28c2f6b3c3e0e8c6dcfba369e1ea656cf8daf69be789e0fe2105982b 0.3s done
#7 DONE 2.6s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:f7543d9969bdc112dd9819ca642e14433fdacfe857f170f6b803392fc7e451ad
#7 extracting sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c
#7 extracting sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c 1.2s done
#7 DONE 3.8s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:f7543d9969bdc112dd9819ca642e14433fdacfe857f170f6b803392fc7e451ad
#7 extracting sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf
#7 extracting sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 3.5s done
#7 DONE 7.4s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:f7543d9969bdc112dd9819ca642e14433fdacfe857f170f6b803392fc7e451ad
#7 extracting sha256:00683c1a0086a31822e73abd9b7fa8fac88afc579ba4ad8cf366c8043d8356a3 0.1s done
#7 DONE 7.5s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:f7543d9969bdc112dd9819ca642e14433fdacfe857f170f6b803392fc7e451ad
#7 extracting sha256:86eeafd0d69e4790943e3a95c810bd84dd1bdbd2e72b3bb5f516f36efb3cbb4d
#7 extracting sha256:86eeafd0d69e4790943e3a95c810bd84dd1bdbd2e72b3bb5f516f36efb3cbb4d 0.4s done
#7 DONE 7.9s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:f7543d9969bdc112dd9819ca642e14433fdacfe857f170f6b803392fc7e451ad
#7 extracting sha256:08f524b859488acd9bfa91774287d22a7a740761abbbfd79c914171b33508bad done
#7 extracting sha256:8a962627486923420564f81706c5e3fe142807f066b4d279ad7ca821667761d6 0.1s done
#7 DONE 8.0s
#8 [builder 2/13] RUN echo "deb http://deb.debian.org/debian bookworm-backports main" >> /etc/apt/sources.list && apt-get update -y && apt-get install -y --no-install-recommends build-essential ca-certificates cargo curl git gcc g++ libffi-dev libssl-dev pkg-config python3-dev rustc && apt-get install -y golang -t bookworm-backports
#8 0.072 Get:1 http://deb.debian.org/debian bookworm-backports InRelease [56.6 kB]
#8 0.078 Get:2 http://deb.debian.org/debian bookworm InRelease [151 kB]
#8 0.079 Get:3 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
#8 0.081 Get:4 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
#8 0.155 Get:5 http://deb.debian.org/debian bookworm-backports/main amd64 Packages [237 kB]
#8 0.201 Get:6 http://deb.debian.org/debian bookworm/main amd64 Packages [8788 kB]
#8 0.258 Get:7 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.8 kB]
#8 0.305 Get:8 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [179 kB]
#8 0.795 Fetched 9528 kB in 1s (13.1 MB/s)
#8 0.795 Reading package lists...
#8 1.110 Reading package lists...
#8 1.404 Building dependency tree...
#8 1.487 Reading state information...
#8 1.555 ca-certificates is already the newest version (20230311).
#8 1.555 curl is already the newest version (7.88.1-10+deb12u6).
#8 1.555 git is already the newest version (1:2.39.2-1.1).
#8 1.555 gcc is already the newest version (4:12.2.0-3).
#8 1.555 g++ is already the newest version (4:12.2.0-3).
#8 1.555 libffi-dev is already the newest version (3.4.4-1).
#8 1.555 libssl-dev is already the newest version (3.0.13-1~deb12u1).
#8 1.555 pkg-config is already the newest version (1.8.1-1).
#8 1.555 pkg-config set to manually installed.
#8 1.555 The following additional packages will be installed:
#8 1.556 libgit2-1.5 libhttp-parser2.9 libjs-jquery libjs-sphinxdoc libjs-underscore
#8 1.556 libllvm14 libmbedcrypto7 libmbedtls14 libmbedx509-1 libpython3-dev
#8 1.556 libpython3.11 libpython3.11-dev libpython3.11-minimal libpython3.11-stdlib
#8 1.556 libstd-rust-1.63 libstd-rust-dev libz3-4 python3.11 python3.11-dev
#8 1.556 python3.11-minimal
#8 1.556 Suggested packages:
#8 1.556 cargo-doc python3.11-venv python3.11-doc binfmt-support lld-14 clang-14
#8 1.556 Recommended packages:
#8 1.556 javascript-common llvm-14
#8 1.639 The following NEW packages will be installed:
#8 1.640 build-essential cargo libgit2-1.5 libhttp-parser2.9 libjs-jquery
#8 1.640 libjs-sphinxdoc libjs-underscore libllvm14 libmbedcrypto7 libmbedtls14
#8 1.640 libmbedx509-1 libpython3-dev libpython3.11 libpython3.11-dev
#8 1.640 libstd-rust-1.63 libstd-rust-dev libz3-4 python3-dev python3.11-dev rustc
#8 1.641 The following packages will be upgraded:
#8 1.641 libpython3.11-minimal libpython3.11-stdlib python3.11 python3.11-minimal
#8 1.658 4 upgraded, 20 newly installed, 0 to remove and 1 not upgraded.
#8 1.658 Need to get 102 MB of archives.
#8 1.658 After this operation, 459 MB of additional disk space will be used.
#8 1.658 Get:1 http://deb.debian.org/debian-security bookworm-security/main amd64 python3.11 amd64 3.11.2-6+deb12u3 [573 kB]
#8 1.666 Get:2 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11-stdlib amd64 3.11.2-6+deb12u3 [1797 kB]
#8 1.673 Get:3 http://deb.debian.org/debian-security bookworm-security/main amd64 python3.11-minimal amd64 3.11.2-6+deb12u3 [2067 kB]
#8 1.685 Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11-minimal amd64 3.11.2-6+deb12u3 [816 kB]
#8 1.687 Get:5 http://deb.debian.org/debian bookworm/main amd64 build-essential amd64 12.9 [7704 B]
#8 1.688 Get:6 http://deb.debian.org/debian bookworm/main amd64 libhttp-parser2.9 amd64 2.9.4-5 [22.0 kB]
#8 1.688 Get:7 http://deb.debian.org/debian bookworm/main amd64 libmbedcrypto7 amd64 2.28.3-1 [277 kB]
#8 1.689 Get:8 http://deb.debian.org/debian bookworm/main amd64 libmbedx509-1 amd64 2.28.3-1 [128 kB]
#8 1.690 Get:9 http://deb.debian.org/debian bookworm/main amd64 libmbedtls14 amd64 2.28.3-1 [163 kB]
#8 1.691 Get:10 http://deb.debian.org/debian bookworm/main amd64 libgit2-1.5 amd64 1.5.1+ds-1+deb12u1 [502 kB]
#8 1.693 Get:11 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB]
#8 1.722 Get:12 http://deb.debian.org/debian bookworm/main amd64 libllvm14 amd64 1:14.0.6-12 [21.8 MB]
#8 1.806 Get:13 http://deb.debian.org/debian bookworm/main amd64 libstd-rust-1.63 amd64 1.63.0+dfsg1-2 [18.7 MB]
#8 1.877 Get:14 http://deb.debian.org/debian bookworm/main amd64 libstd-rust-dev amd64 1.63.0+dfsg1-2 [33.9 MB]
#8 2.004 Get:15 http://deb.debian.org/debian bookworm/main amd64 rustc amd64 1.63.0+dfsg1-2 [2613 kB]
#8 2.015 Get:16 http://deb.debian.org/debian bookworm/main amd64 cargo amd64 0.66.0+ds1-1 [3419 kB]
#8 2.028 Get:17 http://deb.debian.org/debian bookworm/main amd64 libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB]
#8 2.030 Get:18 http://deb.debian.org/debian bookworm/main amd64 libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB]
#8 2.031 Get:19 http://deb.debian.org/debian bookworm/main amd64 libjs-sphinxdoc all 5.3.0-4 [130 kB]
#8 2.031 Get:20 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11 amd64 3.11.2-6+deb12u3 [1988 kB]
#8 2.036 Get:21 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11-dev amd64 3.11.2-6+deb12u3 [4734 kB]
#8 2.043 Get:22 http://deb.debian.org/debian bookworm/main amd64 libpython3-dev amd64 3.11.2-1+b1 [9572 B]
#8 2.043 Get:23 http://deb.debian.org/debian-security bookworm-security/main amd64 python3.11-dev amd64 3.11.2-6+deb12u3 [616 kB]
#8 2.044 Get:24 http://deb.debian.org/debian bookworm/main amd64 python3-dev amd64 3.11.2-1+b1 [26.2 kB]
#8 2.156 debconf: delaying package configuration, since apt-utils is not installed
#8 2.180 Fetched 102 MB in 0s (254 MB/s)
#8 2.197 (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 23958 files and directories currently installed.)
#8 2.209 Preparing to unpack .../00-python3.11_3.11.2-6+deb12u3_amd64.deb ...
#8 2.250 Unpacking python3.11 (3.11.2-6+deb12u3) over (3.11.2-6+deb12u2) ...
#8 2.286 Preparing to unpack .../01-libpython3.11-stdlib_3.11.2-6+deb12u3_amd64.deb ...
#8 2.331 Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u3) over (3.11.2-6+deb12u2) ...
#8 2.588 Preparing to unpack .../02-python3.11-minimal_3.11.2-6+deb12u3_amd64.deb ...
#8 2.592 Unpacking python3.11-minimal (3.11.2-6+deb12u3) over (3.11.2-6+deb12u2) ...
#8 2.716 Preparing to unpack .../03-libpython3.11-minimal_3.11.2-6+deb12u3_amd64.deb ...
#8 2.767 Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u3) over (3.11.2-6+deb12u2) ...
#8 2.939 Selecting previously unselected package build-essential.
#8 2.943 Preparing to unpack .../04-build-essential_12.9_amd64.deb ...
#8 2.944 Unpacking build-essential (12.9) ...
#8 2.960 Selecting previously unselected package libhttp-parser2.9:amd64.
#8 2.961 Preparing to unpack .../05-libhttp-parser2.9_2.9.4-5_amd64.deb ...
#8 2.962 Unpacking libhttp-parser2.9:amd64 (2.9.4-5) ...
#8 2.976 Selecting previously unselected package libmbedcrypto7:amd64.
#8 2.979 Preparing to unpack .../06-libmbedcrypto7_2.28.3-1_amd64.deb ...
#8 2.980 Unpacking libmbedcrypto7:amd64 (2.28.3-1) ...
#8 3.003 Selecting previously unselected package libmbedx509-1:amd64.
#8 3.007 Preparing to unpack .../07-libmbedx509-1_2.28.3-1_amd64.deb ...
#8 3.008 Unpacking libmbedx509-1:amd64 (2.28.3-1) ...
#8 3.022 Selecting previously unselected package libmbedtls14:amd64.
#8 3.025 Preparing to unpack .../08-libmbedtls14_2.28.3-1_amd64.deb ...
#8 3.026 Unpacking libmbedtls14:amd64 (2.28.3-1) ...
#8 3.053 Selecting previously unselected package libgit2-1.5:amd64.
#8 3.056 Preparing to unpack .../09-libgit2-1.5_1.5.1+ds-1+deb12u1_amd64.deb ...
#8 3.057 Unpacking libgit2-1.5:amd64 (1.5.1+ds-1+deb12u1) ...
#8 3.089 Selecting previously unselected package libz3-4:amd64.
#8 3.093 Preparing to unpack .../10-libz3-4_4.8.12-3.1_amd64.deb ...
#8 3.093 Unpacking libz3-4:amd64 (4.8.12-3.1) ...
#8 3.391 Selecting previously unselected package libllvm14:amd64.
#8 3.395 Preparing to unpack .../11-libllvm14_1%3a14.0.6-12_amd64.deb ...
#8 3.396 Unpacking libllvm14:amd64 (1:14.0.6-12) ...
#8 4.107 Selecting previously unselected package libstd-rust-1.63:amd64.
#8 4.109 Preparing to unpack .../12-libstd-rust-1.63_1.63.0+dfsg1-2_amd64.deb ...
#8 4.110 Unpacking libstd-rust-1.63:amd64 (1.63.0+dfsg1-2) ...
#8 4.814 Selecting previously unselected package libstd-rust-dev:amd64.
#8 4.818 Preparing to unpack .../13-libstd-rust-dev_1.63.0+dfsg1-2_amd64.deb ...
#8 4.820 Unpacking libstd-rust-dev:amd64 (1.63.0+dfsg1-2) ...
#8 6.102 Selecting previously unselected package rustc.
#8 6.106 Preparing to unpack .../14-rustc_1.63.0+dfsg1-2_amd64.deb ...
#8 6.107 Unpacking rustc (1.63.0+dfsg1-2) ...
#8 6.207 Selecting previously unselected package cargo.
#8 6.209 Preparing to unpack .../15-cargo_0.66.0+ds1-1_amd64.deb ...
#8 6.210 Unpacking cargo (0.66.0+ds1-1) ...
#8 6.370 Selecting previously unselected package libjs-jquery.
#8 6.370 Preparing to unpack .../16-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
#8 6.375 Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
#8 6.396 Selecting previously unselected package libjs-underscore.
#8 6.399 Preparing to unpack .../17-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ...
#8 6.399 Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
#8 6.415 Selecting previously unselected package libjs-sphinxdoc.
#8 6.417 Preparing to unpack .../18-libjs-sphinxdoc_5.3.0-4_all.deb ...
#8 6.418 Unpacking libjs-sphinxdoc (5.3.0-4) ...
#8 6.437 Selecting previously unselected package libpython3.11:amd64.
#8 6.439 Preparing to unpack .../19-libpython3.11_3.11.2-6+deb12u3_amd64.deb ...
#8 6.440 Unpacking libpython3.11:amd64 (3.11.2-6+deb12u3) ...
#8 6.537 Selecting previously unselected package libpython3.11-dev:amd64.
#8 6.540 Preparing to unpack .../20-libpython3.11-dev_3.11.2-6+deb12u3_amd64.deb ...
#8 6.541 Unpacking libpython3.11-dev:amd64 (3.11.2-6+deb12u3) ...
#8 6.767 Selecting previously unselected package libpython3-dev:amd64.
#8 6.770 Preparing to unpack .../21-libpython3-dev_3.11.2-1+b1_amd64.deb ...
#8 6.771 Unpacking libpython3-dev:amd64 (3.11.2-1+b1) ...
#8 6.783 Selecting previously unselected package python3.11-dev.
#8 6.786 Preparing to unpack .../22-python3.11-dev_3.11.2-6+deb12u3_amd64.deb ...
#8 6.786 Unpacking python3.11-dev (3.11.2-6+deb12u3) ...
#8 6.804 Selecting previously unselected package python3-dev.
#8 6.807 Preparing to unpack .../23-python3-dev_3.11.2-1+b1_amd64.deb ...
#8 6.808 Unpacking python3-dev (3.11.2-1+b1) ...
#8 6.829 Setting up libz3-4:amd64 (4.8.12-3.1) ...
#8 6.831 Setting up libmbedcrypto7:amd64 (2.28.3-1) ...
#8 6.833 Setting up libllvm14:amd64 (1:14.0.6-12) ...
#8 6.835 Setting up build-essential (12.9) ...
#8 6.837 Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u3) ...
#8 6.840 Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
#8 6.845 Setting up libhttp-parser2.9:amd64 (2.9.4-5) ...
#8 6.847 Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
#8 6.848 Setting up python3.11-minimal (3.11.2-6+deb12u3) ...
#8 7.238 Setting up libmbedx509-1:amd64 (2.28.3-1) ...
#8 7.241 Setting up libmbedtls14:amd64 (2.28.3-1) ...
#8 7.243 Setting up libstd-rust-1.63:amd64 (1.63.0+dfsg1-2) ...
#8 7.245 Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u3) ...
#8 7.246 Setting up libstd-rust-dev:amd64 (1.63.0+dfsg1-2) ...
#8 7.248 Setting up libjs-sphinxdoc (5.3.0-4) ...
#8 7.250 Setting up rustc (1.63.0+dfsg1-2) ...
#8 7.252 Setting up libgit2-1.5:amd64 (1.5.1+ds-1+deb12u1) ...
#8 7.254 Setting up python3.11 (3.11.2-6+deb12u3) ...
#8 7.660 Setting up libpython3.11:amd64 (3.11.2-6+deb12u3) ...
#8 7.662 Setting up cargo (0.66.0+ds1-1) ...
#8 7.664 Setting up libpython3.11-dev:amd64 (3.11.2-6+deb12u3) ...
#8 7.666 Setting up libpython3-dev:amd64 (3.11.2-1+b1) ...
#8 7.668 Setting up python3.11-dev (3.11.2-6+deb12u3) ...
#8 7.670 Setting up python3-dev (3.11.2-1+b1) ...
#8 7.672 Processing triggers for libc-bin (2.36-9+deb12u7) ...
#8 7.722 Reading package lists...
#8 8.031 Building dependency tree...
#8 8.113 Reading state information...
#8 8.177 The following additional packages will be installed:
#8 8.177 golang-1.22 golang-1.22-doc golang-1.22-go golang-1.22-src golang-doc
#8 8.178 golang-go golang-src
#8 8.179 Suggested packages:
#8 8.179 bzr | brz
#8 8.190 The following NEW packages will be installed:
#8 8.190 golang golang-1.22 golang-1.22-doc golang-1.22-go golang-1.22-src golang-doc
#8 8.191 golang-go golang-src
#8 8.207 0 upgraded, 8 newly installed, 0 to remove and 16 not upgraded.
#8 8.207 Need to get 43.8 MB of archives.
#8 8.207 After this operation, 228 MB of additional disk space will be used.
#8 8.207 Get:1 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22-doc all 1.22.1-1~bpo12+1 [104 kB]
#8 8.212 Get:2 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22-src all 1.22.1-1~bpo12+1 [18.8 MB]
#8 8.280 Get:3 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22-go amd64 1.22.1-1~bpo12+1 [24.7 MB]
#8 8.350 Get:4 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22 all 1.22.1-1~bpo12+1 [15.0 kB]
#8 8.350 Get:5 http://deb.debian.org/debian bookworm-backports/main amd64 golang-src all 2:1.22~3~bpo12+1 [5112 B]
#8 8.350 Get:6 http://deb.debian.org/debian bookworm-backports/main amd64 golang-go amd64 2:1.22~3~bpo12+1 [44.3 kB]
#8 8.351 Get:7 http://deb.debian.org/debian bookworm-backports/main amd64 golang-doc all 2:1.22~3~bpo12+1 [5128 B]
#8 8.351 Get:8 http://deb.debian.org/debian bookworm-backports/main amd64 golang amd64 2:1.22~3~bpo12+1 [5068 B]
#8 8.436 debconf: delaying package configuration, since apt-utils is not installed
#8 8.454 Fetched 43.8 MB in 0s (278 MB/s)
#8 8.465 Selecting previously unselected package golang-1.22-doc.
#8 8.465 (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 24440 files and directories currently installed.)
#8 8.476 Preparing to unpack .../0-golang-1.22-doc_1.22.1-1~bpo12+1_all.deb ...
#8 8.477 Unpacking golang-1.22-doc (1.22.1-1~bpo12+1) ...
#8 8.509 Selecting previously unselected package golang-1.22-src.
#8 8.511 Preparing to unpack .../1-golang-1.22-src_1.22.1-1~bpo12+1_all.deb ...
#8 8.514 Unpacking golang-1.22-src (1.22.1-1~bpo12+1) ...
#8 10.58 Selecting previously unselected package golang-1.22-go.
#8 10.58 Preparing to unpack .../2-golang-1.22-go_1.22.1-1~bpo12+1_amd64.deb ...
#8 10.59 Unpacking golang-1.22-go (1.22.1-1~bpo12+1) ...
#8 11.38 Selecting previously unselected package golang-1.22.
#8 11.38 Preparing to unpack .../3-golang-1.22_1.22.1-1~bpo12+1_all.deb ...
#8 11.38 Unpacking golang-1.22 (1.22.1-1~bpo12+1) ...
#8 11.39 Selecting previously unselected package golang-src.
#8 11.39 Preparing to unpack .../4-golang-src_2%3a1.22~3~bpo12+1_all.deb ...
#8 11.40 Unpacking golang-src (2:1.22~3~bpo12+1) ...
#8 11.41 Selecting previously unselected package golang-go:amd64.
#8 11.41 Preparing to unpack .../5-golang-go_2%3a1.22~3~bpo12+1_amd64.deb ...
#8 11.41 Unpacking golang-go:amd64 (2:1.22~3~bpo12+1) ...
#8 11.43 Selecting previously unselected package golang-doc.
#8 11.43 Preparing to unpack .../6-golang-doc_2%3a1.22~3~bpo12+1_all.deb ...
#8 11.43 Unpacking golang-doc (2:1.22~3~bpo12+1) ...
#8 11.45 Selecting previously unselected package golang:amd64.
#8 11.45 Preparing to unpack .../7-golang_2%3a1.22~3~bpo12+1_amd64.deb ...
#8 11.45 Unpacking golang:amd64 (2:1.22~3~bpo12+1) ...
#8 11.47 Setting up golang-1.22-doc (1.22.1-1~bpo12+1) ...
#8 11.47 Setting up golang-1.22-src (1.22.1-1~bpo12+1) ...
#8 11.47 Setting up golang-src (2:1.22~3~bpo12+1) ...
#8 11.47 Setting up golang-1.22-go (1.22.1-1~bpo12+1) ...
#8 11.47 Setting up golang-1.22 (1.22.1-1~bpo12+1) ...
#8 11.48 Setting up golang-go:amd64 (2:1.22~3~bpo12+1) ...
#8 11.48 Setting up golang-doc (2:1.22~3~bpo12+1) ...
#8 11.48 Setting up golang:amd64 (2:1.22~3~bpo12+1) ...
#8 DONE 11.8s
#9 [builder 3/13] RUN pip install poetry
#9 1.170 Collecting poetry
#9 1.201 Downloading poetry-1.8.3-py3-none-any.whl.metadata (6.8 kB)
#9 1.232 Collecting build<2.0.0,>=1.0.3 (from poetry)
#9 1.235 Downloading build-1.2.1-py3-none-any.whl.metadata (4.3 kB)
#9 1.252 Collecting cachecontrol<0.15.0,>=0.14.0 (from cachecontrol[filecache]<0.15.0,>=0.14.0->poetry)
#9 1.255 Downloading cachecontrol-0.14.0-py3-none-any.whl.metadata (3.1 kB)
#9 1.274 Collecting cleo<3.0.0,>=2.1.0 (from poetry)
#9 1.277 Downloading cleo-2.1.0-py3-none-any.whl.metadata (12 kB)
#9 1.288 Collecting crashtest<0.5.0,>=0.4.1 (from poetry)
#9 1.291 Downloading crashtest-0.4.1-py3-none-any.whl.metadata (1.1 kB)
#9 1.374 Collecting dulwich<0.22.0,>=0.21.2 (from poetry)
#9 1.378 Downloading dulwich-0.21.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.3 kB)
#9 1.392 Collecting fastjsonschema<3.0.0,>=2.18.0 (from poetry)
#9 1.395 Downloading fastjsonschema-2.20.0-py3-none-any.whl.metadata (2.1 kB)
#9 1.409 Collecting installer<0.8.0,>=0.7.0 (from poetry)
#9 1.412 Downloading installer-0.7.0-py3-none-any.whl.metadata (936 bytes)
#9 1.453 Collecting keyring<25.0.0,>=24.0.0 (from poetry)
#9 1.456 Downloading keyring-24.3.1-py3-none-any.whl.metadata (20 kB)
#9 1.476 Collecting packaging>=23.1 (from poetry)
#9 1.480 Downloading packaging-24.1-py3-none-any.whl.metadata (3.2 kB)
#9 1.491 Collecting pexpect<5.0.0,>=4.7.0 (from poetry)
#9 1.494 Downloading pexpect-4.9.0-py2.py3-none-any.whl.metadata (2.5 kB)
#9 1.510 Collecting pkginfo<2.0,>=1.10 (from poetry)
#9 1.513 Downloading pkginfo-1.11.1-py3-none-any.whl.metadata (11 kB)
#9 1.536 Collecting platformdirs<5,>=3.0.0 (from poetry)
#9 1.540 Downloading platformdirs-4.2.2-py3-none-any.whl.metadata (11 kB)
#9 1.563 Collecting poetry-core==1.9.0 (from poetry)
#9 1.566 Downloading poetry_core-1.9.0-py3-none-any.whl.metadata (3.5 kB)
#9 1.585 Collecting poetry-plugin-export<2.0.0,>=1.6.0 (from poetry)
#9 1.588 Downloading poetry_plugin_export-1.8.0-py3-none-any.whl.metadata (2.8 kB)
#9 1.599 Collecting pyproject-hooks<2.0.0,>=1.0.0 (from poetry)
#9 1.601 Downloading pyproject_hooks-1.1.0-py3-none-any.whl.metadata (1.3 kB)
#9 1.628 Collecting requests<3.0,>=2.26 (from poetry)
#9 1.631 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB)
#9 1.647 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from poetry)
#9 1.650 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB)
#9 1.672 Collecting shellingham<2.0,>=1.5 (from poetry)
#9 1.675 Downloading shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB)
#9 1.700 Collecting tomlkit<1.0.0,>=0.11.4 (from poetry)
#9 1.704 Downloading tomlkit-0.13.2-py3-none-any.whl.metadata (2.7 kB)
#9 1.730 Collecting trove-classifiers>=2022.5.19 (from poetry)
#9 1.733 Downloading trove_classifiers-2024.7.2-py3-none-any.whl.metadata (2.2 kB)
#9 1.800 Collecting virtualenv<21.0.0,>=20.23.0 (from poetry)
#9 1.804 Downloading virtualenv-20.26.3-py3-none-any.whl.metadata (4.5 kB)
#9 1.907 Collecting msgpack<2.0.0,>=0.5.2 (from cachecontrol<0.15.0,>=0.14.0->cachecontrol[filecache]<0.15.0,>=0.14.0->poetry)
#9 1.910 Downloading msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.1 kB)
#9 1.940 Collecting filelock>=3.8.0 (from cachecontrol[filecache]<0.15.0,>=0.14.0->poetry)
#9 1.943 Downloading filelock-3.15.4-py3-none-any.whl.metadata (2.9 kB)
#9 2.349 Collecting rapidfuzz<4.0.0,>=3.0.0 (from cleo<3.0.0,>=2.1.0->poetry)
#9 2.353 Downloading rapidfuzz-3.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB)
#9 2.388 Collecting urllib3>=1.25 (from dulwich<0.22.0,>=0.21.2->poetry)
#9 2.391 Downloading urllib3-2.2.2-py3-none-any.whl.metadata (6.4 kB)
#9 2.420 Collecting jaraco.classes (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.423 Downloading jaraco.classes-3.4.0-py3-none-any.whl.metadata (2.6 kB)
#9 2.463 Collecting importlib-metadata>=4.11.4 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.466 Downloading importlib_metadata-8.4.0-py3-none-any.whl.metadata (4.7 kB)
#9 2.480 Collecting SecretStorage>=3.2 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.482 Downloading SecretStorage-3.3.3-py3-none-any.whl.metadata (4.0 kB)
#9 2.495 Collecting jeepney>=0.4.2 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.498 Downloading jeepney-0.8.0-py3-none-any.whl.metadata (1.3 kB)
#9 2.513 Collecting ptyprocess>=0.5 (from pexpect<5.0.0,>=4.7.0->poetry)
#9 2.516 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl.metadata (1.3 kB)
#9 2.623 Collecting charset-normalizer<4,>=2 (from requests<3.0,>=2.26->poetry)
#9 2.627 Downloading charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)
#9 2.644 Collecting idna<4,>=2.5 (from requests<3.0,>=2.26->poetry)
#9 2.647 Downloading idna-3.8-py3-none-any.whl.metadata (9.9 kB)
#9 2.671 Collecting certifi>=2017.4.17 (from requests<3.0,>=2.26->poetry)
#9 2.674 Downloading certifi-2024.7.4-py3-none-any.whl.metadata (2.2 kB)
#9 2.715 Collecting distlib<1,>=0.3.7 (from virtualenv<21.0.0,>=20.23.0->poetry)
#9 2.718 Downloading distlib-0.3.8-py2.py3-none-any.whl.metadata (5.1 kB)
#9 2.776 Collecting zipp>=0.5 (from importlib-metadata>=4.11.4->keyring<25.0.0,>=24.0.0->poetry)
#9 2.779 Downloading zipp-3.20.1-py3-none-any.whl.metadata (3.7 kB)
#9 2.935 Collecting cryptography>=2.0 (from SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 2.938 Downloading cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (5.4 kB)
#9 2.971 Collecting more-itertools (from jaraco.classes->keyring<25.0.0,>=24.0.0->poetry)
#9 2.974 Downloading more_itertools-10.4.0-py3-none-any.whl.metadata (36 kB)
#9 3.070 Collecting cffi>=1.12 (from cryptography>=2.0->SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 3.072 Downloading cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
#9 3.147 Collecting pycparser (from cffi>=1.12->cryptography>=2.0->SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 3.150 Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
#9 3.163 Downloading poetry-1.8.3-py3-none-any.whl (249 kB)
#9 3.170 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 249.9/249.9 kB 61.2 MB/s eta 0:00:00
#9 3.172 Downloading poetry_core-1.9.0-py3-none-any.whl (309 kB)
#9 3.177 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 309.5/309.5 kB 101.8 MB/s eta 0:00:00
#9 3.180 Downloading build-1.2.1-py3-none-any.whl (21 kB)
#9 3.184 Downloading cachecontrol-0.14.0-py3-none-any.whl (22 kB)
#9 3.188 Downloading cleo-2.1.0-py3-none-any.whl (78 kB)
#9 3.191 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.7/78.7 kB 41.7 MB/s eta 0:00:00
#9 3.194 Downloading crashtest-0.4.1-py3-none-any.whl (7.6 kB)
#9 3.199 Downloading dulwich-0.21.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516 kB)
#9 3.206 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 516.4/516.4 kB 100.4 MB/s eta 0:00:00
#9 3.209 Downloading fastjsonschema-2.20.0-py3-none-any.whl (23 kB)
#9 3.213 Downloading installer-0.7.0-py3-none-any.whl (453 kB)
#9 3.219 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 453.8/453.8 kB 103.1 MB/s eta 0:00:00
#9 3.223 Downloading keyring-24.3.1-py3-none-any.whl (38 kB)
#9 3.228 Downloading packaging-24.1-py3-none-any.whl (53 kB)
#9 3.231 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.0/54.0 kB 27.5 MB/s eta 0:00:00
#9 3.234 Downloading pexpect-4.9.0-py2.py3-none-any.whl (63 kB)
#9 3.238 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.8/63.8 kB 32.3 MB/s eta 0:00:00
#9 3.240 Downloading pkginfo-1.11.1-py3-none-any.whl (31 kB)
#9 3.244 Downloading platformdirs-4.2.2-py3-none-any.whl (18 kB)
#9 3.248 Downloading poetry_plugin_export-1.8.0-py3-none-any.whl (10 kB)
#9 3.252 Downloading pyproject_hooks-1.1.0-py3-none-any.whl (9.2 kB)
#9 3.257 Downloading requests-2.32.3-py3-none-any.whl (64 kB)
#9 3.260 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.9/64.9 kB 28.5 MB/s eta 0:00:00
#9 3.263 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB)
#9 3.266 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.5/54.5 kB 28.5 MB/s eta 0:00:00
#9 3.269 Downloading shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB)
#9 3.273 Downloading tomlkit-0.13.2-py3-none-any.whl (37 kB)
#9 3.278 Downloading trove_classifiers-2024.7.2-py3-none-any.whl (13 kB)
#9 3.282 Downloading virtualenv-20.26.3-py3-none-any.whl (5.7 MB)
#9 3.319 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.7/5.7 MB 163.5 MB/s eta 0:00:00
#9 3.323 Downloading certifi-2024.7.4-py3-none-any.whl (162 kB)
#9 3.326 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.0/163.0 kB 75.2 MB/s eta 0:00:00
#9 3.330 Downloading charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140 kB)
#9 3.333 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 140.3/140.3 kB 68.9 MB/s eta 0:00:00
#9 3.336 Downloading distlib-0.3.8-py2.py3-none-any.whl (468 kB)
#9 3.342 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 468.9/468.9 kB 136.9 MB/s eta 0:00:00
#9 3.345 Downloading filelock-3.15.4-py3-none-any.whl (16 kB)
#9 3.350 Downloading idna-3.8-py3-none-any.whl (66 kB)
#9 3.353 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 66.9/66.9 kB 33.3 MB/s eta 0:00:00
#9 3.356 Downloading importlib_metadata-8.4.0-py3-none-any.whl (26 kB)
#9 3.361 Downloading jeepney-0.8.0-py3-none-any.whl (48 kB)
#9 3.364 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.4/48.4 kB 23.7 MB/s eta 0:00:00
#9 3.367 Downloading msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (409 kB)
#9 3.373 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 409.3/409.3 kB 106.8 MB/s eta 0:00:00
#9 3.376 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl (13 kB)
#9 3.381 Downloading rapidfuzz-3.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB)
#9 3.402 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/3.4 MB 170.6 MB/s eta 0:00:00
#9 3.406 Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)
#9 3.410 Downloading urllib3-2.2.2-py3-none-any.whl (121 kB)
#9 3.413 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 121.4/121.4 kB 59.7 MB/s eta 0:00:00
#9 3.416 Downloading jaraco.classes-3.4.0-py3-none-any.whl (6.8 kB)
#9 3.421 Downloading cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl (4.0 MB)
#9 3.446 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.0/4.0 MB 165.3 MB/s eta 0:00:00
#9 3.449 Downloading zipp-3.20.1-py3-none-any.whl (9.0 kB)
#9 3.453 Downloading more_itertools-10.4.0-py3-none-any.whl (60 kB)
#9 3.456 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 60.9/60.9 kB 34.0 MB/s eta 0:00:00
#9 3.459 Downloading cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466 kB)
#9 3.465 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 466.9/466.9 kB 119.9 MB/s eta 0:00:00
#9 3.468 Downloading pycparser-2.22-py3-none-any.whl (117 kB)
#9 3.471 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 117.6/117.6 kB 51.5 MB/s eta 0:00:00
#9 3.646 Installing collected packages: trove-classifiers, ptyprocess, fastjsonschema, distlib, zipp, urllib3, tomlkit, shellingham, rapidfuzz, pyproject-hooks, pycparser, poetry-core, platformdirs, pkginfo, pexpect, packaging, msgpack, more-itertools, jeepney, installer, idna, filelock, crashtest, charset-normalizer, certifi, virtualenv, requests, jaraco.classes, importlib-metadata, dulwich, cleo, cffi, build, requests-toolbelt, cryptography, cachecontrol, SecretStorage, keyring, poetry-plugin-export, poetry
#9 5.111 Successfully installed SecretStorage-3.3.3 build-1.2.1 cachecontrol-0.14.0 certifi-2024.7.4 cffi-1.17.0 charset-normalizer-3.3.2 cleo-2.1.0 crashtest-0.4.1 cryptography-43.0.0 distlib-0.3.8 dulwich-0.21.7 fastjsonschema-2.20.0 filelock-3.15.4 idna-3.8 importlib-metadata-8.4.0 installer-0.7.0 jaraco.classes-3.4.0 jeepney-0.8.0 keyring-24.3.1 more-itertools-10.4.0 msgpack-1.0.8 packaging-24.1 pexpect-4.9.0 pkginfo-1.11.1 platformdirs-4.2.2 poetry-1.8.3 poetry-core-1.9.0 poetry-plugin-export-1.8.0 ptyprocess-0.7.0 pycparser-2.22 pyproject-hooks-1.1.0 rapidfuzz-3.9.6 requests-2.32.3 requests-toolbelt-1.0.0 shellingham-1.5.4 tomlkit-0.13.2 trove-classifiers-2024.7.2 urllib3-2.2.2 virtualenv-20.26.3 zipp-3.20.1
#9 5.112 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
#9 5.216
#9 5.216 [notice] A new release of pip is available: 24.0 -> 24.2
#9 5.216 [notice] To update, run: pip install --upgrade pip
#9 DONE 5.5s
#10 [builder 4/13] RUN python3 -m venv /venv
#10 DONE 2.1s
#11 [builder 5/13] RUN ln -s /venv/lib/python3.11 /venv/lib/python
#11 DONE 0.1s
#12 [builder 6/13] WORKDIR /build
#12 DONE 0.0s
#13 [builder 7/13] RUN go install -v github.com/go-python/gopy@latest
#13 0.104 go: downloading github.com/go-python/gopy v0.4.10
#13 0.149 go: downloading github.com/gonuts/commander v0.1.0
#13 0.149 go: downloading github.com/gonuts/flag v0.1.0
#13 0.161 go: downloading github.com/pkg/errors v0.9.1
#13 0.165 go: downloading golang.org/x/tools v0.16.0
#13 0.477 go: downloading golang.org/x/mod v0.14.0
#13 0.519 internal/unsafeheader
#13 0.520 internal/goarch
#13 0.525 internal/cpu
#13 0.528 internal/abi
#13 0.551 internal/bytealg
#13 0.598 internal/chacha8rand
#13 0.624 internal/coverage/rtcov
#13 0.630 internal/godebugs
#13 0.634 internal/goexperiment
#13 0.637 internal/goos
#13 0.640 runtime/internal/atomic
#13 0.642 runtime/internal/math
#13 0.647 runtime/internal/sys
#13 0.654 runtime/internal/syscall
#13 0.664 internal/race
#13 0.670 sync/atomic
#13 0.675 runtime
#13 0.696 unicode
#13 0.776 unicode/utf8
#13 0.794 internal/itoa
#13 0.801 math/bits
#13 0.820 math
#13 0.936 cmp
#13 0.940 slices
#13 0.952 encoding
#13 0.957 unicode/utf16
#13 0.967 internal/gover
#13 0.981 internal/goversion
#13 0.985 internal/platform
#13 1.039 log/internal
#13 1.043 golang.org/x/tools/internal/packagesinternal
#13 2.367 internal/reflectlite
#13 2.367 sync
#13 2.441 internal/testlog
#13 2.457 internal/bisect
#13 2.458 errors
#13 2.482 io
#13 2.488 strconv
#13 2.535 bytes
#13 2.601 sort
#13 2.615 reflect
#13 2.708 internal/oserror
#13 2.715 syscall
#13 3.053 internal/syscall/unix
#13 3.072 time
#13 3.104 internal/fmtsort
#13 3.124 internal/safefilepath
#13 3.130 internal/syscall/execenv
#13 3.136 path
#13 3.155 encoding/binary
#13 3.234 encoding/base64
#13 3.276 strings
#13 3.309 internal/poll
#13 3.383 io/fs
#13 3.415 regexp/syntax
#13 3.427 os
#13 3.580 regexp
#13 3.649 fmt
#13 3.689 path/filepath
#13 3.737 internal/lazyregexp
#13 3.750 container/heap
#13 3.760 internal/godebug
#13 3.798 math/rand
#13 3.837 encoding/json
#13 3.842 github.com/pkg/errors
#13 3.870 go/token
#13 3.913 go/scanner
#13 3.965 go/ast
#13 4.086 go/doc/comment
#13 4.158 math/big
#13 4.197 go/doc
#13 4.331 go/internal/typeparams
#13 4.340 go/build/constraint
#13 4.373 go/parser
#13 4.538 go/constant
#13 4.597 go/version
#13 4.605 internal/buildcfg
#13 4.621 internal/types/errors
#13 4.629 hash
#13 4.636 hash/fnv
#13 4.645 go/types
#13 4.661 context
#13 4.707 os/exec
#13 4.763 github.com/gonuts/flag
#13 4.811 net/url
#13 4.865 text/template/parse
#13 5.033 text/template
#13 5.437 github.com/gonuts/commander
#13 5.475 bufio
#13 5.531 internal/goroot
#13 5.552 go/build
#13 5.773 crypto
#13 5.795 crypto/md5
#13 5.828 golang.org/x/tools/internal/pkgbits
#13 5.904 golang.org/x/tools/internal/tokeninternal
#13 5.918 golang.org/x/mod/semver
#13 5.939 golang.org/x/tools/internal/event/label
#13 5.957 golang.org/x/tools/internal/event/keys
#13 6.009 golang.org/x/tools/internal/event/core
#13 6.030 golang.org/x/tools/internal/event
#13 6.045 golang.org/x/tools/internal/event/tag
#13 6.051 log
#13 6.092 golang.org/x/tools/internal/gocommand
#13 6.151 golang.org/x/tools/go/internal/packagesdriver
#13 6.163 golang.org/x/tools/internal/typeparams
#13 6.163 github.com/go-python/gopy/bind
#13 6.212 golang.org/x/tools/go/types/objectpath
#13 6.257 golang.org/x/tools/internal/gcimporter
#13 6.495 golang.org/x/tools/go/gcexportdata
#13 6.529 golang.org/x/tools/internal/typesinternal
#13 6.556 golang.org/x/tools/internal/versions
#13 6.577 golang.org/x/tools/go/packages
#13 6.692 github.com/go-python/gopy
#13 DONE 7.0s
#14 [builder 8/13] RUN go install golang.org/x/tools/cmd/goimports@latest
#14 0.123 go: downloading golang.org/x/tools v0.24.0
#14 0.469 go: downloading golang.org/x/mod v0.20.0
#14 0.505 go: downloading golang.org/x/sync v0.8.0
#14 DONE 1.5s
#15 [builder 9/13] COPY poetry.lock pyproject.toml /build/
#15 DONE 0.0s
#16 [builder 10/13] RUN poetry export --without-hashes > requirements.txt
#16 0.334 Warning: poetry-plugin-export will not be installed by default in a future version of Poetry.
#16 0.334 In order to avoid a breaking change and make your automation forward-compatible, please install poetry-plugin-export explicitly. See https://python-poetry.org/docs/plugins/#using-plugins for details on how to install a plugin.
#16 0.334 To disable this warning run 'poetry config warnings.export false'.
#16 DONE 0.5s
#17 [builder 11/13] RUN python3 -m pip install --requirement requirements.txt
#17 0.346 Ignoring brotlicffi: markers 'platform_python_implementation != "CPython" and python_version >= "3.11" and python_version < "4.0"' don't match your environment
#17 0.347 Ignoring colorama: markers 'python_version >= "3.11" and python_version < "4.0" and platform_system == "Windows"' don't match your environment
#17 0.389 Collecting aiodns==3.2.0 (from -r requirements.txt (line 1))
#17 0.418 Downloading aiodns-3.2.0-py3-none-any.whl.metadata (4.0 kB)
#17 0.447 Collecting aiohappyeyeballs==2.4.0 (from -r requirements.txt (line 2))
#17 0.452 Downloading aiohappyeyeballs-2.4.0-py3-none-any.whl.metadata (5.9 kB)
#17 0.642 Collecting aiohttp==3.10.5 (from aiohttp[speedups]==3.10.5->-r requirements.txt (line 3))
#17 0.646 Downloading aiohttp-3.10.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.5 kB)
#17 0.659 Collecting aiosignal==1.3.1 (from -r requirements.txt (line 4))
#17 0.663 Downloading aiosignal-1.3.1-py3-none-any.whl.metadata (4.0 kB)
#17 0.693 Collecting alembic==1.13.2 (from -r requirements.txt (line 5))
#17 0.697 Downloading alembic-1.13.2-py3-none-any.whl.metadata (7.4 kB)
#17 0.714 Collecting attrs==24.2.0 (from -r requirements.txt (line 6))
#17 0.717 Downloading attrs-24.2.0-py3-none-any.whl.metadata (11 kB)
#17 0.734 Collecting beautifulsoup4==4.12.3 (from -r requirements.txt (line 7))
#17 0.738 Downloading beautifulsoup4-4.12.3-py3-none-any.whl.metadata (3.8 kB)
#17 0.764 Collecting brotli==1.1.0 (from -r requirements.txt (line 8))
#17 0.767 Downloading Brotli-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.5 kB)
#17 0.785 Collecting certifi==2024.7.4 (from -r requirements.txt (line 10))
#17 0.786 Using cached certifi-2024.7.4-py3-none-any.whl.metadata (2.2 kB)
#17 0.885 Collecting cffi==1.17.0 (from -r requirements.txt (line 11))
#17 0.886 Using cached cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
#17 0.936 Collecting charset-normalizer==3.3.2 (from -r requirements.txt (line 12))
#17 0.937 Using cached charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)
#17 0.952 Collecting configargparse==1.7 (from -r requirements.txt (line 14))
#17 0.956 Downloading ConfigArgParse-1.7-py3-none-any.whl.metadata (23 kB)
#17 1.085 Collecting cryptography==43.0.0 (from -r requirements.txt (line 15))
#17 1.086 Using cached cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (5.4 kB)
#17 1.101 Collecting defusedxml==0.7.1 (from -r requirements.txt (line 16))
#17 1.104 Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB)
#17 1.150 Collecting frozenlist==1.4.1 (from -r requirements.txt (line 17))
#17 1.154 Downloading frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB)
#17 1.242 Collecting greenlet==3.0.3 (from -r requirements.txt (line 18))
#17 1.246 Downloading greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB)
#17 1.263 Collecting idna==3.8 (from -r requirements.txt (line 19))
#17 1.264 Using cached idna-3.8-py3-none-any.whl.metadata (9.9 kB)
#17 1.366 Collecting linkpreview==0.6.5 (from -r requirements.txt (line 20))
#17 1.370 Downloading linkpreview-0.6.5-py3-none-any.whl.metadata (3.8 kB)
#17 1.392 Collecting mako==1.3.5 (from -r requirements.txt (line 21))
#17 1.395 Downloading Mako-1.3.5-py3-none-any.whl.metadata (2.9 kB)
#17 1.465 Collecting markupsafe==2.1.5 (from -r requirements.txt (line 22))
#17 1.468 Downloading MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB)
#17 1.582 Collecting multidict==6.0.5 (from -r requirements.txt (line 23))
#17 1.586 Downloading multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB)
#17 1.601 Collecting pickle-secure==0.99.9 (from -r requirements.txt (line 24))
#17 1.606 Downloading pickle_secure-0.99.9-py3-none-any.whl.metadata (2.3 kB)
#17 1.740 Collecting pillow==10.4.0 (from -r requirements.txt (line 25))
#17 1.743 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.2 kB)
#17 1.768 Collecting pyasn1-modules==0.4.0 (from -r requirements.txt (line 26))
#17 1.772 Downloading pyasn1_modules-0.4.0-py3-none-any.whl.metadata (3.4 kB)
#17 1.798 Collecting pyasn1==0.6.0 (from -r requirements.txt (line 27))
#17 1.801 Downloading pyasn1-0.6.0-py2.py3-none-any.whl.metadata (8.3 kB)
#17 1.813 Collecting pybindgen==0.22.1 (from -r requirements.txt (line 28))
#17 1.816 Downloading PyBindGen-0.22.1-py2.py3-none-any.whl.metadata (5.6 kB)
#17 1.849 Collecting pycares==4.4.0 (from -r requirements.txt (line 29))
#17 1.853 Downloading pycares-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.1 kB)
#17 1.865 Collecting pycparser==2.22 (from -r requirements.txt (line 30))
#17 1.866 Using cached pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
#17 1.876 Collecting pypng==0.20220715.0 (from -r requirements.txt (line 31))
#17 1.881 Downloading pypng-0.20220715.0-py3-none-any.whl.metadata (13 kB)
#17 1.897 Collecting python-magic==0.4.27 (from -r requirements.txt (line 32))
#17 1.900 Downloading python_magic-0.4.27-py2.py3-none-any.whl.metadata (5.8 kB)
#17 1.916 Collecting qrcode==7.4.2 (from -r requirements.txt (line 33))
#17 1.920 Downloading qrcode-7.4.2-py3-none-any.whl.metadata (17 kB)
#17 1.992 Collecting requests==2.32.3 (from -r requirements.txt (line 34))
#17 1.993 Using cached requests-2.32.3-py3-none-any.whl.metadata (4.6 kB)
#17 2.009 Collecting slidge==0.2.0b0 (from -r requirements.txt (line 35))
#17 2.013 Downloading slidge-0.2.0b0-py3-none-any.whl.metadata (5.0 kB)
#17 2.025 Collecting slixmpp==1.8.5 (from -r requirements.txt (line 36))
#17 2.030 Downloading slixmpp-1.8.5.tar.gz (574 kB)
#17 2.039 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 574.6/574.6 kB 89.3 MB/s eta 0:00:00
#17 2.163 Installing build dependencies: started
#17 3.318 Installing build dependencies: finished with status 'done'
#17 3.318 Getting requirements to build wheel: started
#17 3.534 Getting requirements to build wheel: finished with status 'done'
#17 3.535 Preparing metadata (pyproject.toml): started
#17 3.727 Preparing metadata (pyproject.toml): finished with status 'done'
#17 3.745 Collecting soupsieve==2.6 (from -r requirements.txt (line 37))
#17 3.750 Downloading soupsieve-2.6-py3-none-any.whl.metadata (4.6 kB)
#17 4.080 Collecting sqlalchemy==2.0.32 (from -r requirements.txt (line 38))
#17 4.084 Downloading SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.6 kB)
#17 4.096 Collecting thumbhash==0.1.2 (from -r requirements.txt (line 39))
#17 4.099 Downloading thumbhash-0.1.2-py3-none-any.whl.metadata (2.1 kB)
#17 4.116 Collecting typing-extensions==4.12.2 (from -r requirements.txt (line 40))
#17 4.120 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB)
#17 4.149 Collecting urllib3==2.2.2 (from -r requirements.txt (line 41))
#17 4.150 Using cached urllib3-2.2.2-py3-none-any.whl.metadata (6.4 kB)
#17 4.230 Collecting yarl==1.9.4 (from -r requirements.txt (line 42))
#17 4.234 Downloading yarl-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (31 kB)
#17 4.581 Downloading aiodns-3.2.0-py3-none-any.whl (5.7 kB)
#17 4.586 Downloading aiohappyeyeballs-2.4.0-py3-none-any.whl (12 kB)
#17 4.591 Downloading aiohttp-3.10.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)
#17 4.601 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 168.9 MB/s eta 0:00:00
#17 4.604 Downloading aiosignal-1.3.1-py3-none-any.whl (7.6 kB)
#17 4.609 Downloading alembic-1.13.2-py3-none-any.whl (232 kB)
#17 4.613 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 233.0/233.0 kB 90.4 MB/s eta 0:00:00
#17 4.616 Downloading attrs-24.2.0-py3-none-any.whl (63 kB)
#17 4.619 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.0/63.0 kB 33.1 MB/s eta 0:00:00
#17 4.622 Downloading beautifulsoup4-4.12.3-py3-none-any.whl (147 kB)
#17 4.626 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 147.9/147.9 kB 63.8 MB/s eta 0:00:00
#17 4.633 Downloading Brotli-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB)
#17 4.654 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 165.1 MB/s eta 0:00:00
#17 4.655 Using cached certifi-2024.7.4-py3-none-any.whl (162 kB)
#17 4.656 Using cached cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466 kB)
#17 4.659 Using cached charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140 kB)
#17 4.664 Downloading ConfigArgParse-1.7-py3-none-any.whl (25 kB)
#17 4.666 Using cached cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl (4.0 MB)
#17 4.676 Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB)
#17 4.681 Downloading frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (272 kB)
#17 4.685 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 272.3/272.3 kB 98.6 MB/s eta 0:00:00
#17 4.689 Downloading greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (620 kB)
#17 4.695 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 620.0/620.0 kB 134.7 MB/s eta 0:00:00
#17 4.696 Using cached idna-3.8-py3-none-any.whl (66 kB)
#17 4.701 Downloading linkpreview-0.6.5-py3-none-any.whl (11 kB)
#17 4.705 Downloading Mako-1.3.5-py3-none-any.whl (78 kB)
#17 4.708 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.6/78.6 kB 42.9 MB/s eta 0:00:00
#17 4.712 Downloading MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28 kB)
#17 4.717 Downloading multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (128 kB)
#17 4.721 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 128.7/128.7 kB 57.7 MB/s eta 0:00:00
#17 4.724 Downloading pickle_secure-0.99.9-py3-none-any.whl (6.6 kB)
#17 4.729 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB)
#17 4.760 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 158.8 MB/s eta 0:00:00
#17 4.763 Downloading pyasn1_modules-0.4.0-py3-none-any.whl (181 kB)
#17 4.767 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 181.2/181.2 kB 74.1 MB/s eta 0:00:00
#17 4.770 Downloading pyasn1-0.6.0-py2.py3-none-any.whl (85 kB)
#17 4.774 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 85.3/85.3 kB 40.2 MB/s eta 0:00:00
#17 4.779 Downloading PyBindGen-0.22.1-py2.py3-none-any.whl (152 kB)
#17 4.783 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 152.8/152.8 kB 63.7 MB/s eta 0:00:00
#17 4.787 Downloading pycares-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288 kB)
#17 4.792 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 288.7/288.7 kB 93.2 MB/s eta 0:00:00
#17 4.793 Using cached pycparser-2.22-py3-none-any.whl (117 kB)
#17 4.797 Downloading pypng-0.20220715.0-py3-none-any.whl (58 kB)
#17 4.801 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.1/58.1 kB 25.0 MB/s eta 0:00:00
#17 4.805 Downloading python_magic-0.4.27-py2.py3-none-any.whl (13 kB)
#17 4.810 Downloading qrcode-7.4.2-py3-none-any.whl (46 kB)
#17 4.813 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 46.2/46.2 kB 23.4 MB/s eta 0:00:00
#17 4.815 Using cached requests-2.32.3-py3-none-any.whl (64 kB)
#17 4.820 Downloading slidge-0.2.0b0-py3-none-any.whl (210 kB)
#17 4.824 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 210.3/210.3 kB 67.1 MB/s eta 0:00:00
#17 4.828 Downloading soupsieve-2.6-py3-none-any.whl (36 kB)
#17 4.833 Downloading SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB)
#17 4.854 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 157.3 MB/s eta 0:00:00
#17 4.859 Downloading thumbhash-0.1.2-py3-none-any.whl (5.1 kB)
#17 4.863 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB)
#17 4.867 Using cached urllib3-2.2.2-py3-none-any.whl (121 kB)
#17 4.871 Downloading yarl-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328 kB)
#17 4.876 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 328.1/328.1 kB 82.9 MB/s eta 0:00:00
#17 4.912 Building wheels for collected packages: slixmpp
#17 4.913 Building wheel for slixmpp (pyproject.toml): started
#17 5.357 Building wheel for slixmpp (pyproject.toml): finished with status 'done'
#17 5.358 Created wheel for slixmpp: filename=slixmpp-1.8.5-py3-none-any.whl size=511620 sha256=4248f91a9f1053c9c7e1d04d7c4c9c90c72ed2cd188ba0ef4db1f15d4571da4d
#17 5.358 Stored in directory: /root/.cache/pip/wheels/bd/36/1f/bb5720bf3bf0d3ad08642be1ea7c2c5e0b63bdf4e2a1dc8798
#17 5.362 Successfully built slixmpp
#17 5.498 Installing collected packages: pypng, pybindgen, brotli, urllib3, typing-extensions, thumbhash, soupsieve, python-magic, pycparser, pyasn1, pillow, multidict, markupsafe, idna, greenlet, frozenlist, defusedxml, configargparse, charset-normalizer, certifi, attrs, aiohappyeyeballs, yarl, sqlalchemy, requests, qrcode, pyasn1-modules, mako, cffi, beautifulsoup4, aiosignal, pycares, linkpreview, cryptography, alembic, aiohttp, pickle-secure, aiodns, slixmpp, slidge
#17 7.808 Successfully installed aiodns-3.2.0 aiohappyeyeballs-2.4.0 aiohttp-3.10.5 aiosignal-1.3.1 alembic-1.13.2 attrs-24.2.0 beautifulsoup4-4.12.3 brotli-1.1.0 certifi-2024.7.4 cffi-1.17.0 charset-normalizer-3.3.2 configargparse-1.7 cryptography-43.0.0 defusedxml-0.7.1 frozenlist-1.4.1 greenlet-3.0.3 idna-3.8 linkpreview-0.6.5 mako-1.3.5 markupsafe-2.1.5 multidict-6.0.5 pickle-secure-0.99.9 pillow-10.4.0 pyasn1-0.6.0 pyasn1-modules-0.4.0 pybindgen-0.22.1 pycares-4.4.0 pycparser-2.22 pypng-0.20220715.0 python-magic-0.4.27 qrcode-7.4.2 requests-2.32.3 slidge-0.2.0b0 slixmpp-1.8.5 soupsieve-2.6 sqlalchemy-2.0.32 thumbhash-0.1.2 typing-extensions-4.12.2 urllib3-2.2.2 yarl-1.9.4
#17 7.833
#17 7.833 [notice] A new release of pip is available: 24.0 -> 24.2
#17 7.833 [notice] To update, run: pip install --upgrade pip
#17 DONE 8.2s
#18 [builder 12/13] COPY ./slidge_whatsapp/*.go ./slidge_whatsapp/go.* /build/
#18 DONE 0.1s
#19 [builder 13/13] RUN gopy build -output=generated -no-make=true /build/
#19 0.045 go build -v /build/
#19 0.052 go: downloading github.com/h2non/filetype v1.1.3
#19 0.053 go: downloading github.com/mattn/go-sqlite3 v1.14.22
#19 0.195 go: downloading go.mau.fi/whatsmeow v0.0.0-20240710112833-d732338c041f
#19 0.259 go: downloading golang.org/x/image v0.15.0
#19 0.466 go: downloading github.com/google/uuid v1.6.0
#19 0.476 go: downloading github.com/gorilla/websocket v1.5.1
#19 0.489 go: downloading github.com/rs/zerolog v1.33.0
#19 0.494 go: downloading go.mau.fi/libsignal v0.1.1-0.20240705162345-47e713a595ab
#19 0.521 go: downloading go.mau.fi/util v0.5.0
#19 0.541 go: downloading golang.org/x/crypto v0.25.0
#19 0.630 go: downloading golang.org/x/net v0.27.0
#19 0.630 go: downloading google.golang.org/protobuf v1.34.2
#19 0.816 go: downloading github.com/mattn/go-colorable v0.1.13
#19 0.818 go: downloading filippo.io/edwards25519 v1.1.0
#19 0.839 go: downloading github.com/mattn/go-isatty v0.0.20
#19 0.849 go: downloading golang.org/x/sys v0.22.0
#19 1.033 crypto/internal/alias
#19 1.046 github.com/h2non/filetype/matchers/isobmff
#19 1.051 github.com/h2non/filetype/types
#19 1.059 crypto/subtle
#19 1.066 github.com/h2non/filetype/matchers
#19 1.074 crypto/cipher
#19 1.114 crypto/internal/boring/sig
#19 1.132 crypto/internal/boring
#19 1.142 github.com/h2non/filetype
#19 1.146 crypto/sha1
#19 1.174 crypto/sha256
#19 1.182 crypto/sha512
#19 1.218 database/sql/driver
#19 1.223 runtime/cgo
#19 1.279 database/sql
#19 1.473 hash/adler32
#19 1.485 compress/zlib
#19 1.507 crypto/aes
#19 1.548 crypto/hmac
#19 1.559 encoding/base32
#19 1.589 encoding/hex
#19 1.613 crypto/internal/randutil
#19 1.620 crypto/rand
#19 1.643 vendor/golang.org/x/net/dns/dnsmessage
#19 1.766 github.com/mattn/go-sqlite3
#19 1.772 internal/nettrace
#19 1.776 internal/singleflight
#19 1.788 internal/intern
#19 1.803 net/netip
#19 1.905 net
#19 3.167 github.com/google/uuid
#19 3.217 container/list
#19 3.231 crypto/des
#19 3.255 crypto/internal/edwards25519/field
#19 3.297 crypto/internal/nistec/fiat
#19 3.521 embed
#19 3.547 crypto/internal/nistec
#19 3.705 crypto/ecdh
#19 3.738 crypto/elliptic
#19 3.798 crypto/internal/bigmod
#19 3.851 crypto/internal/boring/bbig
#19 3.861 encoding/asn1
#19 3.980 vendor/golang.org/x/crypto/cryptobyte/asn1
#19 3.986 vendor/golang.org/x/crypto/cryptobyte
#19 4.083 crypto/ecdsa
#19 4.158 crypto/internal/edwards25519
#19 4.218 crypto/ed25519
#19 4.241 crypto/rc4
#19 4.249 crypto/rsa
#19 4.305 crypto/dsa
#19 4.325 crypto/x509/pkix
#19 4.350 encoding/pem
#19 4.371 crypto/x509
#19 4.703 vendor/golang.org/x/crypto/internal/alias
#19 4.711 vendor/golang.org/x/crypto/chacha20
#19 4.743 vendor/golang.org/x/crypto/internal/poly1305
#19 4.776 vendor/golang.org/x/sys/cpu
#19 4.809 vendor/golang.org/x/crypto/chacha20poly1305
#19 4.867 vendor/golang.org/x/crypto/hkdf
#19 4.879 crypto/tls
#19 5.826 golang.org/x/net/internal/socks
#19 5.877 golang.org/x/net/proxy
#19 5.913 vendor/golang.org/x/text/transform
#19 5.944 vendor/golang.org/x/text/unicode/bidi
#19 6.053 vendor/golang.org/x/text/secure/bidirule
#19 6.070 vendor/golang.org/x/text/unicode/norm
#19 6.279 vendor/golang.org/x/net/idna
#19 6.388 net/textproto
#19 6.451 vendor/golang.org/x/net/http/httpguts
#19 6.472 vendor/golang.org/x/net/http/httpproxy
#19 6.499 vendor/golang.org/x/net/http2/hpack
#19 6.555 mime
#19 6.631 mime/quotedprintable
#19 6.654 mime/multipart
#19 6.724 net/http/httptrace
#19 6.743 net/http/internal
#19 6.762 net/http/internal/ascii
#19 6.776 net/http
#19 8.362 github.com/gorilla/websocket
#19 8.524 golang.org/x/sys/unix
#19 9.066 github.com/mattn/go-isatty
#19 9.082 github.com/mattn/go-colorable
#19 9.096 github.com/rs/zerolog/internal/json
#19 9.158 github.com/rs/zerolog
#19 9.475 filippo.io/edwards25519/field
#19 9.515 filippo.io/edwards25519
#19 9.607 go.mau.fi/libsignal/logger
#19 9.624 golang.org/x/crypto/curve25519
#19 9.635 go.mau.fi/libsignal/ecc
#19 9.657 go.mau.fi/libsignal/cipher
#19 9.671 golang.org/x/crypto/hkdf
#19 9.680 go.mau.fi/libsignal/kdf
#19 9.687 go.mau.fi/libsignal/util/bytehelper
#19 9.696 go.mau.fi/libsignal/groups/ratchet
#19 9.711 go.mau.fi/libsignal/signalerror
#19 9.718 go.mau.fi/libsignal/groups/state/record
#19 9.743 go.mau.fi/libsignal/keys/identity
#19 9.755 go.mau.fi/libsignal/util/optional
#19 9.762 go.mau.fi/libsignal/protocol
#19 9.797 go.mau.fi/libsignal/groups/state/store
#19 9.804 go.mau.fi/libsignal/keys/message
#19 9.811 go.mau.fi/libsignal/keys/chain
#19 9.822 go.mau.fi/libsignal/keys/session
#19 9.832 go.mau.fi/libsignal/keys/root
#19 9.842 go.mau.fi/libsignal/util/errorhelper
#19 9.850 go.mau.fi/libsignal/state/record
#19 9.921 google.golang.org/protobuf/internal/detrand
#19 9.932 google.golang.org/protobuf/internal/errors
#19 9.943 google.golang.org/protobuf/encoding/protowire
#19 9.964 google.golang.org/protobuf/internal/pragma
#19 9.970 google.golang.org/protobuf/reflect/protoreflect
#19 10.10 google.golang.org/protobuf/internal/encoding/messageset
#19 10.12 google.golang.org/protobuf/internal/flags
#19 10.12 google.golang.org/protobuf/internal/genid
#19 10.14 google.golang.org/protobuf/internal/order
#19 10.16 google.golang.org/protobuf/internal/strs
#19 10.19 google.golang.org/protobuf/reflect/protoregistry
#19 10.25 google.golang.org/protobuf/runtime/protoiface
#19 10.26 google.golang.org/protobuf/proto
#19 10.42 google.golang.org/protobuf/internal/descfmt
#19 10.47 google.golang.org/protobuf/internal/descopts
#19 10.48 google.golang.org/protobuf/internal/editiondefaults
#19 10.49 google.golang.org/protobuf/internal/encoding/text
#19 10.57 google.golang.org/protobuf/internal/encoding/defval
#19 10.59 google.golang.org/protobuf/internal/filedesc
#19 10.90 google.golang.org/protobuf/internal/set
#19 10.91 google.golang.org/protobuf/encoding/prototext
#19 11.03 google.golang.org/protobuf/internal/encoding/tag
#19 11.05 google.golang.org/protobuf/internal/impl
#19 12.12 google.golang.org/protobuf/internal/filetype
#19 12.15 google.golang.org/protobuf/internal/version
#19 12.16 google.golang.org/protobuf/runtime/protoimpl
#19 12.17 go.mau.fi/libsignal/serialize
#19 12.27 go.mau.fi/libsignal/util/keyhelper
#19 12.28 go.mau.fi/libsignal/groups
#19 12.31 go.mau.fi/libsignal/keys/prekey
#19 12.31 go.mau.fi/libsignal/ratchet
#19 12.33 go.mau.fi/libsignal/state/store
#19 12.35 go.mau.fi/libsignal/util/medium
#19 12.36 go.mau.fi/libsignal/session
#19 12.39 go.mau.fi/util/random
#19 12.41 go.mau.fi/util/retryafter
#19 12.41 go.mau.fi/whatsmeow/util/hkdfutil
#19 12.42 go.mau.fi/whatsmeow/appstate/lthash
#19 12.43 go.mau.fi/whatsmeow/binary/token
#19 12.44 go.mau.fi/util/jsontime
#19 12.69 go.mau.fi/whatsmeow/proto/waAdv
#19 12.72 go.mau.fi/whatsmeow/proto/waCert
#19 12.75 go.mau.fi/whatsmeow/proto/waUserPassword
#19 12.78 go.mau.fi/whatsmeow/proto/waChatLockSettings
#19 12.80 go.mau.fi/whatsmeow/proto/waCommon
#19 12.84 go.mau.fi/whatsmeow/proto/waCompanionReg
#19 12.88 go.mau.fi/whatsmeow/proto/waDeviceCapabilities
#19 12.90 go.mau.fi/whatsmeow/proto/waMmsRetry
#19 12.93 go.mau.fi/whatsmeow/proto/waE2E
#19 13.75 go.mau.fi/whatsmeow/proto/waEphemeral
#19 13.78 go.mau.fi/whatsmeow/proto/waSyncAction
#19 13.97 go.mau.fi/whatsmeow/proto/waWeb
#19 14.14 go.mau.fi/whatsmeow/proto/waHistorySync
#19 14.27 go.mau.fi/whatsmeow/proto/armadilloutil
#19 14.28 go.mau.fi/whatsmeow/proto/waArmadilloXMA
#19 14.33 go.mau.fi/whatsmeow/proto/waArmadilloApplication
#19 14.46 go.mau.fi/whatsmeow/proto/waMediaTransport
#19 14.54 go.mau.fi/whatsmeow/proto/waConsumerApplication
#19 14.68 go.mau.fi/whatsmeow/proto/waMultiDevice
#19 14.72 go.mau.fi/whatsmeow/proto/waMsgApplication
#19 14.78 go.mau.fi/whatsmeow/proto/waMsgTransport
#19 14.83 go.mau.fi/whatsmeow/proto/waQuickPromotionSurfaces
#19 14.87 go.mau.fi/whatsmeow/proto/waServerSync
#19 14.93 go.mau.fi/whatsmeow/proto/waVnameCert
#19 14.98 go.mau.fi/whatsmeow/proto/waWa6
#19 15.07 go.mau.fi/whatsmeow/binary/proto
#19 15.14 go.mau.fi/whatsmeow/types
#19 15.21 go.mau.fi/whatsmeow/binary
#19 15.29 go.mau.fi/whatsmeow/util/keys
#19 15.30 go.mau.fi/whatsmeow/util/log
#19 15.34 go.mau.fi/whatsmeow/store
#19 15.40 go.mau.fi/whatsmeow/util/cbcutil
#19 15.41 go.mau.fi/whatsmeow/appstate
#19 15.50 go.mau.fi/whatsmeow/proto
#19 15.51 go.mau.fi/whatsmeow/util/gcmutil
#19 15.52 go.mau.fi/whatsmeow/socket
#19 15.57 go.mau.fi/whatsmeow/types/events
#19 15.65 golang.org/x/crypto/pbkdf2
#19 15.66 runtime/debug
#19 15.70 go.mau.fi/whatsmeow
#19 16.71 go.mau.fi/whatsmeow/store/sqlstore
#19 16.81 golang.org/x/image/riff
#19 16.83 image/color
#19 16.85 image
#19 16.94 golang.org/x/image/vp8
#19 17.03 golang.org/x/image/vp8l
#19 17.08 golang.org/x/image/webp
#19 17.10 image/internal/imageutil
#19 17.11 image/jpeg
#19 17.17 image/png
#19 29.00 git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp
#19 30.71
#19 30.71 --- Processing package: git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp ---
#19 30.71 ignoring python incompatible method: time.func (time.Time).Date() (year int, month time.Month, day int): func() (year int, month time.Month, day int): gopy: too many results to return: func() (year int, month time.Month, day int)
#19 30.71 ignoring python incompatible method: time.func (time.Time).ISOWeek() (year int, week int): func() (year int, week int): gopy: second result value must be of type error: func() (year int, week int)
#19 30.71 ignoring python incompatible method: time.func (time.Time).Clock() (hour int, min int, sec int): func() (hour int, min int, sec int): gopy: too many results to return: func() (hour int, min int, sec int)
#19 30.71 ignoring python incompatible method: time.func (time.Time).Zone() (name string, offset int): func() (name string, offset int): gopy: second result value must be of type error: func() (name string, offset int)
#19 30.71 ignoring python incompatible method: time.func (time.Time).ZoneBounds() (start time.Time, end time.Time): func() (start time.Time, end time.Time): gopy: second result value must be of type error: func() (start time.Time, end time.Time)
#19 30.74
#19 30.74 --- building package ---
#19 30.74 gopy build -output=generated -no-make=true /build/
#19 30.74 goimports -w whatsapp.go
#19 30.97 go build -mod=mod -buildmode=c-shared -o whatsapp_go.so .
#19 64.68 /venv/bin/python build.py
#19 64.78 CGO_CFLAGS="-I/usr/local/include/python3.11" -fPIC -Ofast
#19 64.78 CGO_LDFLAGS="-L/usr/local/lib" "-lpython3.11" -ldl -lm
#19 64.78 go build -mod=mod -buildmode=c-shared -o _whatsapp.cpython-311-x86_64-linux-gnu.so .
#19 DONE 95.8s
#20 [builder-wheel 1/9] RUN pip install pybindgen
#20 0.505 Requirement already satisfied: pybindgen in /venv/lib/python3.11/site-packages (0.22.1)
#20 0.647
#20 0.647 [notice] A new release of pip is available: 24.0 -> 24.2
#20 0.647 [notice] To update, run: pip install --upgrade pip
#20 DONE 0.7s
#21 [builder-wheel 2/9] COPY go.* /build/
#21 DONE 0.0s
#22 [builder-wheel 3/9] COPY README.md /build/
#22 DONE 0.0s
#23 [builder-wheel 4/9] COPY slidge_whatsapp/*.py /build/slidge_whatsapp/
#23 DONE 0.0s
#24 [builder-wheel 5/9] COPY slidge_whatsapp/*.go /build/slidge_whatsapp/
#24 DONE 0.0s
#25 [builder-wheel 6/9] COPY build.py /build/
#25 DONE 0.0s
#26 [builder-wheel 7/9] RUN poetry build
#26 0.367 Creating virtualenv slidge-whatsapp-XDF0t07c-py3.11 in /root/.cache/pypoetry/virtualenvs
#26 0.620 Preparing build environment with build-system requirements poetry-core, pybindgen
#26 1.620 Building slidge-whatsapp (0.0.0-dev+20240829_gitf54328f2df)
#26 1.626 - Building sdist
#26 1.642 - Built slidge_whatsapp-0.0.0.dev0+20240829.gitf54328f2df.tar.gz
#26 1.642 - Building wheel
#26 1.896 go build -v .
#26 2.002 git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp/slidge_whatsapp
#26 3.668
#26 3.668 --- Processing package: git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp/slidge_whatsapp ---
#26 3.668 ignoring python incompatible method: time.func (time.Time).Date() (year int, month time.Month, day int): func() (year int, month time.Month, day int): gopy: too many results to return: func() (year int, month time.Month, day int)
#26 3.669 ignoring python incompatible method: time.func (time.Time).ISOWeek() (year int, week int): func() (year int, week int): gopy: second result value must be of type error: func() (year int, week int)
#26 3.669 ignoring python incompatible method: time.func (time.Time).Clock() (hour int, min int, sec int): func() (hour int, min int, sec int): gopy: too many results to return: func() (hour int, min int, sec int)
#26 3.669 ignoring python incompatible method: time.func (time.Time).Zone() (name string, offset int): func() (name string, offset int): gopy: second result value must be of type error: func() (name string, offset int)
#26 3.669 ignoring python incompatible method: time.func (time.Time).ZoneBounds() (start time.Time, end time.Time): func() (start time.Time, end time.Time): gopy: second result value must be of type error: func() (start time.Time, end time.Time)
#26 3.694
#26 3.694 --- building package ---
#26 3.694 gopy build -output=generated -no-make=true .
#26 3.694 goimports -w whatsapp.go
#26 3.820 go build -mod=mod -buildmode=c-shared -o whatsapp_go.so .
#26 7.265 /venv/bin/python build.py
#26 7.369 CGO_CFLAGS="-I/usr/local/include/python3.11" -fPIC -Ofast
#26 7.369 CGO_LDFLAGS="-L/usr/local/lib" "-lpython3.11" -ldl -lm
#26 7.369 go build -mod=mod -buildmode=c-shared -o _whatsapp.cpython-311-x86_64-linux-gnu.so .
#26 11.99 - Built slidge_whatsapp-0.0.0.dev0+20240829.gitf54328f2df-cp311-cp311-manylinux_2_36_x86_64.whl
#26 DONE 12.1s
#27 [builder-wheel 8/9] RUN ls -l ./dist
#27 0.063 total 8892
#27 0.063 -rw-r--r-- 1 root root 9062310 Aug 29 04:54 slidge_whatsapp-0.0.0.dev0+20240829.gitf54328f2df-cp311-cp311-manylinux_2_36_x86_64.whl
#27 0.063 -rw-r--r-- 1 root root 37123 Aug 29 04:54 slidge_whatsapp-0.0.0.dev0+20240829.gitf54328f2df.tar.gz
#27 DONE 0.1s
#28 [builder-wheel 9/9] RUN python --version
#28 0.033 Python 3.11.9
#28 DONE 0.0s
#29 [wheel 1/1] COPY --from=builder-wheel ./build/dist/* /
#29 DONE 0.0s
#30 exporting to client directory
#30 copying files 9.10MB 0.1s done
#30 DONE 0.1s
1 warning found (use docker --debug to expand):
- FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 85)
+ mkdir dist
+ mv dist-mess/slidge_whatsapp-0.0.0.dev0+20240829.gitf54328f2df.tar.gz dist/
+ mv dist-mess/slidge_whatsapp-0.0.0.dev0+20240829.gitf54328f2df-cp311-cp311-manylinux_2_36_x86_64.whl dist/
+ tar cvf /home/build/packages.tar dist/slidge_whatsapp-0.0.0.dev0+20240829.gitf54328f2df-cp311-cp311-manylinux_2_36_x86_64.whl dist/slidge_whatsapp-0.0.0.dev0+20240829.gitf54328f2df.tar.gz
dist/slidge_whatsapp-0.0.0.dev0+20240829.gitf54328f2df-cp311-cp311-manylinux_2_36_x86_64.whl
dist/slidge_whatsapp-0.0.0.dev0+20240829.gitf54328f2df.tar.gz
|