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 |
+ 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 "funny_franklin" 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.7s done
#1 creating container buildx_buildkit_funny_franklin0
#1 creating container buildx_buildkit_funny_franklin0 0.2s done
#1 DONE 3.9s
#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.1s
#5 [internal] load .dockerignore
#5 transferring context: 2B done
#5 DONE 0.0s
#6 [internal] load build context
#6 transferring context: 373.05kB 0.0s done
#6 DONE 0.0s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:157a371e60389919fe4a72dff71ce86eaa5234f59114c23b0b346d0d02c74d39
#7 resolve docker.io/library/python:3.11-bookworm@sha256:157a371e60389919fe4a72dff71ce86eaa5234f59114c23b0b346d0d02c74d39 done
#7 sha256:22cc13c843ff9bae94e16f16ae20d988db591f4da2adde65ff7f7af9c9b116a0 250B / 250B 0.1s done
#7 sha256:434dd8140080c09627cee85ba618cb14d20a59a275f820ded69e08eb5467b94b 0B / 22.97MB 0.2s
#7 sha256:4e5bb47de96b57e5ead5a9a47199b891a1f2931f6d571b945ab328bbf23a73ad 0B / 6.16MB 0.2s
#7 sha256:1c8ff076d818ad6b8557e03e10c83657cc716ab287c8380054ff91571c8cae81 0B / 211.27MB 0.2s
#7 sha256:2e66a70da0bec13fb3d492fcdef60fd8a5ef0a1a65c4e8a4909e26742852f0f2 0B / 64.15MB 0.2s
#7 sha256:434dd8140080c09627cee85ba618cb14d20a59a275f820ded69e08eb5467b94b 22.97MB / 22.97MB 0.3s done
#7 sha256:4e5bb47de96b57e5ead5a9a47199b891a1f2931f6d571b945ab328bbf23a73ad 6.16MB / 6.16MB 0.3s done
#7 sha256:2e66a70da0bec13fb3d492fcdef60fd8a5ef0a1a65c4e8a4909e26742852f0f2 22.02MB / 64.15MB 0.3s
#7 sha256:1c8ff076d818ad6b8557e03e10c83657cc716ab287c8380054ff91571c8cae81 38.80MB / 211.27MB 0.5s
#7 sha256:2e66a70da0bec13fb3d492fcdef60fd8a5ef0a1a65c4e8a4909e26742852f0f2 49.28MB / 64.15MB 0.5s
#7 sha256:2e6afa3f266c11e8960349e7866203a9df478a50362bb5488c45fe39d99b2707 1.05MB / 24.05MB 0.2s
#7 sha256:8cd46d290033f265db57fd808ac81c444ec5a5b3f189c3d6d85043b647336913 4.19MB / 49.56MB 0.2s
#7 sha256:1c8ff076d818ad6b8557e03e10c83657cc716ab287c8380054ff91571c8cae81 63.96MB / 211.27MB 0.6s
#7 sha256:2e66a70da0bec13fb3d492fcdef60fd8a5ef0a1a65c4e8a4909e26742852f0f2 64.15MB / 64.15MB 0.6s
#7 sha256:8cd46d290033f265db57fd808ac81c444ec5a5b3f189c3d6d85043b647336913 28.31MB / 49.56MB 0.3s
#7 sha256:1c8ff076d818ad6b8557e03e10c83657cc716ab287c8380054ff91571c8cae81 82.84MB / 211.27MB 0.8s
#7 sha256:2e66a70da0bec13fb3d492fcdef60fd8a5ef0a1a65c4e8a4909e26742852f0f2 64.15MB / 64.15MB 0.6s done
#7 sha256:2e6afa3f266c11e8960349e7866203a9df478a50362bb5488c45fe39d99b2707 16.78MB / 24.05MB 0.5s
#7 sha256:8cd46d290033f265db57fd808ac81c444ec5a5b3f189c3d6d85043b647336913 49.56MB / 49.56MB 0.5s done
#7 sha256:1c8ff076d818ad6b8557e03e10c83657cc716ab287c8380054ff91571c8cae81 138.41MB / 211.27MB 1.1s
#7 sha256:2e6afa3f266c11e8960349e7866203a9df478a50362bb5488c45fe39d99b2707 24.05MB / 24.05MB 0.6s done
#7 extracting sha256:8cd46d290033f265db57fd808ac81c444ec5a5b3f189c3d6d85043b647336913
#7 sha256:1c8ff076d818ad6b8557e03e10c83657cc716ab287c8380054ff91571c8cae81 171.20MB / 211.27MB 1.2s
#7 sha256:1c8ff076d818ad6b8557e03e10c83657cc716ab287c8380054ff91571c8cae81 208.67MB / 211.27MB 1.4s
#7 sha256:1c8ff076d818ad6b8557e03e10c83657cc716ab287c8380054ff91571c8cae81 211.27MB / 211.27MB 1.6s done
#7 extracting sha256:8cd46d290033f265db57fd808ac81c444ec5a5b3f189c3d6d85043b647336913 1.3s done
#7 DONE 2.2s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:157a371e60389919fe4a72dff71ce86eaa5234f59114c23b0b346d0d02c74d39
#7 extracting sha256:2e6afa3f266c11e8960349e7866203a9df478a50362bb5488c45fe39d99b2707
#7 extracting sha256:2e6afa3f266c11e8960349e7866203a9df478a50362bb5488c45fe39d99b2707 0.3s done
#7 DONE 2.5s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:157a371e60389919fe4a72dff71ce86eaa5234f59114c23b0b346d0d02c74d39
#7 extracting sha256:2e66a70da0bec13fb3d492fcdef60fd8a5ef0a1a65c4e8a4909e26742852f0f2
#7 extracting sha256:2e66a70da0bec13fb3d492fcdef60fd8a5ef0a1a65c4e8a4909e26742852f0f2 1.3s done
#7 DONE 3.8s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:157a371e60389919fe4a72dff71ce86eaa5234f59114c23b0b346d0d02c74d39
#7 extracting sha256:1c8ff076d818ad6b8557e03e10c83657cc716ab287c8380054ff91571c8cae81
#7 extracting sha256:1c8ff076d818ad6b8557e03e10c83657cc716ab287c8380054ff91571c8cae81 3.5s done
#7 DONE 7.3s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:157a371e60389919fe4a72dff71ce86eaa5234f59114c23b0b346d0d02c74d39
#7 extracting sha256:4e5bb47de96b57e5ead5a9a47199b891a1f2931f6d571b945ab328bbf23a73ad 0.1s done
#7 DONE 7.4s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:157a371e60389919fe4a72dff71ce86eaa5234f59114c23b0b346d0d02c74d39
#7 extracting sha256:434dd8140080c09627cee85ba618cb14d20a59a275f820ded69e08eb5467b94b
#7 extracting sha256:434dd8140080c09627cee85ba618cb14d20a59a275f820ded69e08eb5467b94b 0.6s done
#7 DONE 8.0s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:157a371e60389919fe4a72dff71ce86eaa5234f59114c23b0b346d0d02c74d39
#7 extracting sha256:22cc13c843ff9bae94e16f16ae20d988db591f4da2adde65ff7f7af9c9b116a0 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.056 Get:1 http://deb.debian.org/debian bookworm-backports InRelease [59.0 kB]
#8 0.064 Get:2 http://deb.debian.org/debian bookworm InRelease [151 kB]
#8 0.066 Get:3 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
#8 0.069 Get:4 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
#8 0.137 Get:5 http://deb.debian.org/debian bookworm-backports/main amd64 Packages [239 kB]
#8 0.180 Get:6 http://deb.debian.org/debian bookworm/main amd64 Packages [8787 kB]
#8 0.222 Get:7 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [2468 B]
#8 0.263 Get:8 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [182 kB]
#8 0.767 Fetched 9524 kB in 1s (13.3 MB/s)
#8 0.767 Reading package lists...
#8 1.089 Reading package lists...
#8 1.394 Building dependency tree...
#8 1.479 Reading state information...
#8 1.548 ca-certificates is already the newest version (20230311).
#8 1.548 curl is already the newest version (7.88.1-10+deb12u7).
#8 1.548 gcc is already the newest version (4:12.2.0-3).
#8 1.548 g++ is already the newest version (4:12.2.0-3).
#8 1.548 libffi-dev is already the newest version (3.4.4-1).
#8 1.548 libssl-dev is already the newest version (3.0.14-1~deb12u2).
#8 1.548 pkg-config is already the newest version (1.8.1-1).
#8 1.548 pkg-config set to manually installed.
#8 1.548 The following additional packages will be installed:
#8 1.549 git-man libgit2-1.5 libhttp-parser2.9 libjs-jquery libjs-sphinxdoc
#8 1.549 libjs-underscore libllvm14 libmbedcrypto7 libmbedtls14 libmbedx509-1
#8 1.549 libpython3-dev libpython3.11 libpython3.11-dev libstd-rust-1.63
#8 1.549 libstd-rust-dev libz3-4 python3.11-dev
#8 1.550 Suggested packages:
#8 1.550 cargo-doc gettext-base git-daemon-run | git-daemon-sysvinit git-doc
#8 1.550 git-email git-gui gitk gitweb git-cvs git-mediawiki git-svn lld-14 clang-14
#8 1.550 Recommended packages:
#8 1.550 less javascript-common llvm-14
#8 1.633 The following NEW packages will be installed:
#8 1.633 build-essential cargo libgit2-1.5 libhttp-parser2.9 libjs-jquery
#8 1.633 libjs-sphinxdoc libjs-underscore libllvm14 libmbedcrypto7 libmbedtls14
#8 1.633 libmbedx509-1 libpython3-dev libpython3.11 libpython3.11-dev
#8 1.633 libstd-rust-1.63 libstd-rust-dev libz3-4 python3-dev python3.11-dev rustc
#8 1.633 The following packages will be upgraded:
#8 1.634 git git-man
#8 1.649 2 upgraded, 20 newly installed, 0 to remove and 2 not upgraded.
#8 1.649 Need to get 106 MB of archives.
#8 1.649 After this operation, 460 MB of additional disk space will be used.
#8 1.649 Get:1 http://deb.debian.org/debian bookworm/main amd64 build-essential amd64 12.9 [7704 B]
#8 1.653 Get:2 http://deb.debian.org/debian bookworm/main amd64 libhttp-parser2.9 amd64 2.9.4-5 [22.0 kB]
#8 1.654 Get:3 http://deb.debian.org/debian bookworm/main amd64 libmbedcrypto7 amd64 2.28.3-1 [277 kB]
#8 1.658 Get:4 http://deb.debian.org/debian bookworm/main amd64 libmbedx509-1 amd64 2.28.3-1 [128 kB]
#8 1.659 Get:5 http://deb.debian.org/debian bookworm/main amd64 libmbedtls14 amd64 2.28.3-1 [163 kB]
#8 1.661 Get:6 http://deb.debian.org/debian bookworm/main amd64 libgit2-1.5 amd64 1.5.1+ds-1+deb12u1 [502 kB]
#8 1.663 Get:7 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB]
#8 1.692 Get:8 http://deb.debian.org/debian bookworm/main amd64 libllvm14 amd64 1:14.0.6-12 [21.8 MB]
#8 1.768 Get:9 http://deb.debian.org/debian bookworm/main amd64 libstd-rust-1.63 amd64 1.63.0+dfsg1-2 [18.7 MB]
#8 1.834 Get:10 http://deb.debian.org/debian bookworm/main amd64 libstd-rust-dev amd64 1.63.0+dfsg1-2 [33.9 MB]
#8 1.953 Get:11 http://deb.debian.org/debian bookworm/main amd64 rustc amd64 1.63.0+dfsg1-2 [2613 kB]
#8 1.962 Get:12 http://deb.debian.org/debian bookworm/main amd64 cargo amd64 0.66.0+ds1-1 [3419 kB]
#8 1.974 Get:13 http://deb.debian.org/debian-security bookworm-security/main amd64 git amd64 1:2.39.5-0+deb12u1 [7256 kB]
#8 1.993 Get:14 http://deb.debian.org/debian-security bookworm-security/main amd64 git-man all 1:2.39.5-0+deb12u1 [2054 kB]
#8 1.998 Get:15 http://deb.debian.org/debian bookworm/main amd64 libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB]
#8 1.999 Get:16 http://deb.debian.org/debian bookworm/main amd64 libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB]
#8 2.000 Get:17 http://deb.debian.org/debian bookworm/main amd64 libjs-sphinxdoc all 5.3.0-4 [130 kB]
#8 2.001 Get:18 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11 amd64 3.11.2-6+deb12u3 [1988 kB]
#8 2.006 Get:19 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11-dev amd64 3.11.2-6+deb12u3 [4734 kB]
#8 2.018 Get:20 http://deb.debian.org/debian bookworm/main amd64 libpython3-dev amd64 3.11.2-1+b1 [9572 B]
#8 2.018 Get:21 http://deb.debian.org/debian-security bookworm-security/main amd64 python3.11-dev amd64 3.11.2-6+deb12u3 [616 kB]
#8 2.019 Get:22 http://deb.debian.org/debian bookworm/main amd64 python3-dev amd64 3.11.2-1+b1 [26.2 kB]
#8 2.106 debconf: delaying package configuration, since apt-utils is not installed
#8 2.124 Fetched 106 MB in 0s (277 MB/s)
#8 2.135 Selecting previously unselected package build-essential.
#8 2.135 (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 ... 23957 files and directories currently installed.)
#8 2.147 Preparing to unpack .../00-build-essential_12.9_amd64.deb ...
#8 2.147 Unpacking build-essential (12.9) ...
#8 2.160 Selecting previously unselected package libhttp-parser2.9:amd64.
#8 2.163 Preparing to unpack .../01-libhttp-parser2.9_2.9.4-5_amd64.deb ...
#8 2.164 Unpacking libhttp-parser2.9:amd64 (2.9.4-5) ...
#8 2.177 Selecting previously unselected package libmbedcrypto7:amd64.
#8 2.180 Preparing to unpack .../02-libmbedcrypto7_2.28.3-1_amd64.deb ...
#8 2.181 Unpacking libmbedcrypto7:amd64 (2.28.3-1) ...
#8 2.205 Selecting previously unselected package libmbedx509-1:amd64.
#8 2.206 Preparing to unpack .../03-libmbedx509-1_2.28.3-1_amd64.deb ...
#8 2.207 Unpacking libmbedx509-1:amd64 (2.28.3-1) ...
#8 2.222 Selecting previously unselected package libmbedtls14:amd64.
#8 2.224 Preparing to unpack .../04-libmbedtls14_2.28.3-1_amd64.deb ...
#8 2.224 Unpacking libmbedtls14:amd64 (2.28.3-1) ...
#8 2.245 Selecting previously unselected package libgit2-1.5:amd64.
#8 2.245 Preparing to unpack .../05-libgit2-1.5_1.5.1+ds-1+deb12u1_amd64.deb ...
#8 2.246 Unpacking libgit2-1.5:amd64 (1.5.1+ds-1+deb12u1) ...
#8 2.276 Selecting previously unselected package libz3-4:amd64.
#8 2.279 Preparing to unpack .../06-libz3-4_4.8.12-3.1_amd64.deb ...
#8 2.280 Unpacking libz3-4:amd64 (4.8.12-3.1) ...
#8 2.570 Selecting previously unselected package libllvm14:amd64.
#8 2.574 Preparing to unpack .../07-libllvm14_1%3a14.0.6-12_amd64.deb ...
#8 2.575 Unpacking libllvm14:amd64 (1:14.0.6-12) ...
#8 3.285 Selecting previously unselected package libstd-rust-1.63:amd64.
#8 3.288 Preparing to unpack .../08-libstd-rust-1.63_1.63.0+dfsg1-2_amd64.deb ...
#8 3.289 Unpacking libstd-rust-1.63:amd64 (1.63.0+dfsg1-2) ...
#8 3.848 Selecting previously unselected package libstd-rust-dev:amd64.
#8 3.853 Preparing to unpack .../09-libstd-rust-dev_1.63.0+dfsg1-2_amd64.deb ...
#8 3.854 Unpacking libstd-rust-dev:amd64 (1.63.0+dfsg1-2) ...
#8 5.205 Selecting previously unselected package rustc.
#8 5.208 Preparing to unpack .../10-rustc_1.63.0+dfsg1-2_amd64.deb ...
#8 5.209 Unpacking rustc (1.63.0+dfsg1-2) ...
#8 5.311 Selecting previously unselected package cargo.
#8 5.311 Preparing to unpack .../11-cargo_0.66.0+ds1-1_amd64.deb ...
#8 5.312 Unpacking cargo (0.66.0+ds1-1) ...
#8 5.469 Preparing to unpack .../12-git_1%3a2.39.5-0+deb12u1_amd64.deb ...
#8 5.480 Unpacking git (1:2.39.5-0+deb12u1) over (1:2.39.2-1.1) ...
#8 6.134 Preparing to unpack .../13-git-man_1%3a2.39.5-0+deb12u1_all.deb ...
#8 6.136 Unpacking git-man (1:2.39.5-0+deb12u1) over (1:2.39.2-1.1) ...
#8 6.265 Selecting previously unselected package libjs-jquery.
#8 6.267 Preparing to unpack .../14-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
#8 6.271 Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
#8 6.295 Selecting previously unselected package libjs-underscore.
#8 6.295 Preparing to unpack .../15-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ...
#8 6.295 Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
#8 6.312 Selecting previously unselected package libjs-sphinxdoc.
#8 6.313 Preparing to unpack .../16-libjs-sphinxdoc_5.3.0-4_all.deb ...
#8 6.314 Unpacking libjs-sphinxdoc (5.3.0-4) ...
#8 6.333 Selecting previously unselected package libpython3.11:amd64.
#8 6.335 Preparing to unpack .../17-libpython3.11_3.11.2-6+deb12u3_amd64.deb ...
#8 6.336 Unpacking libpython3.11:amd64 (3.11.2-6+deb12u3) ...
#8 6.434 Selecting previously unselected package libpython3.11-dev:amd64.
#8 6.434 Preparing to unpack .../18-libpython3.11-dev_3.11.2-6+deb12u3_amd64.deb ...
#8 6.436 Unpacking libpython3.11-dev:amd64 (3.11.2-6+deb12u3) ...
#8 6.658 Selecting previously unselected package libpython3-dev:amd64.
#8 6.661 Preparing to unpack .../19-libpython3-dev_3.11.2-1+b1_amd64.deb ...
#8 6.662 Unpacking libpython3-dev:amd64 (3.11.2-1+b1) ...
#8 6.675 Selecting previously unselected package python3.11-dev.
#8 6.676 Preparing to unpack .../20-python3.11-dev_3.11.2-6+deb12u3_amd64.deb ...
#8 6.677 Unpacking python3.11-dev (3.11.2-6+deb12u3) ...
#8 6.695 Selecting previously unselected package python3-dev.
#8 6.696 Preparing to unpack .../21-python3-dev_3.11.2-1+b1_amd64.deb ...
#8 6.696 Unpacking python3-dev (3.11.2-1+b1) ...
#8 6.716 Setting up libpython3.11:amd64 (3.11.2-6+deb12u3) ...
#8 6.718 Setting up libz3-4:amd64 (4.8.12-3.1) ...
#8 6.720 Setting up libmbedcrypto7:amd64 (2.28.3-1) ...
#8 6.721 Setting up libpython3.11-dev:amd64 (3.11.2-6+deb12u3) ...
#8 6.723 Setting up libllvm14:amd64 (1:14.0.6-12) ...
#8 6.725 Setting up build-essential (12.9) ...
#8 6.727 Setting up git-man (1:2.39.5-0+deb12u1) ...
#8 6.728 Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
#8 6.733 Setting up libhttp-parser2.9:amd64 (2.9.4-5) ...
#8 6.735 Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
#8 6.736 Setting up libpython3-dev:amd64 (3.11.2-1+b1) ...
#8 6.738 Setting up libmbedx509-1:amd64 (2.28.3-1) ...
#8 6.740 Setting up libmbedtls14:amd64 (2.28.3-1) ...
#8 6.742 Setting up libstd-rust-1.63:amd64 (1.63.0+dfsg1-2) ...
#8 6.744 Setting up python3.11-dev (3.11.2-6+deb12u3) ...
#8 6.745 Setting up libstd-rust-dev:amd64 (1.63.0+dfsg1-2) ...
#8 6.747 Setting up git (1:2.39.5-0+deb12u1) ...
#8 6.753 Setting up libjs-sphinxdoc (5.3.0-4) ...
#8 6.755 Setting up rustc (1.63.0+dfsg1-2) ...
#8 6.757 Setting up libgit2-1.5:amd64 (1.5.1+ds-1+deb12u1) ...
#8 6.759 Setting up cargo (0.66.0+ds1-1) ...
#8 6.760 Setting up python3-dev (3.11.2-1+b1) ...
#8 6.762 Processing triggers for libc-bin (2.36-9+deb12u8) ...
#8 6.805 Reading package lists...
#8 7.080 Building dependency tree...
#8 7.140 Reading state information...
#8 7.200 The following additional packages will be installed:
#8 7.200 golang-1.22 golang-1.22-doc golang-1.22-go golang-1.22-src golang-doc
#8 7.201 golang-go golang-src
#8 7.201 Suggested packages:
#8 7.201 bzr | brz
#8 7.212 The following NEW packages will be installed:
#8 7.212 golang golang-1.22 golang-1.22-doc golang-1.22-go golang-1.22-src golang-doc
#8 7.212 golang-go golang-src
#8 7.229 0 upgraded, 8 newly installed, 0 to remove and 17 not upgraded.
#8 7.229 Need to get 43.8 MB of archives.
#8 7.229 After this operation, 228 MB of additional disk space will be used.
#8 7.229 Get:1 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22-doc all 1.22.7-1~bpo12+1 [105 kB]
#8 7.235 Get:2 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22-src all 1.22.7-1~bpo12+1 [18.8 MB]
#8 7.304 Get:3 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22-go amd64 1.22.7-1~bpo12+1 [24.7 MB]
#8 7.373 Get:4 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22 all 1.22.7-1~bpo12+1 [15.4 kB]
#8 7.374 Get:5 http://deb.debian.org/debian bookworm-backports/main amd64 golang-src all 2:1.22~3~bpo12+1 [5112 B]
#8 7.374 Get:6 http://deb.debian.org/debian bookworm-backports/main amd64 golang-go amd64 2:1.22~3~bpo12+1 [44.3 kB]
#8 7.374 Get:7 http://deb.debian.org/debian bookworm-backports/main amd64 golang-doc all 2:1.22~3~bpo12+1 [5128 B]
#8 7.374 Get:8 http://deb.debian.org/debian bookworm-backports/main amd64 golang amd64 2:1.22~3~bpo12+1 [5068 B]
#8 7.448 debconf: delaying package configuration, since apt-utils is not installed
#8 7.462 Fetched 43.8 MB in 0s (274 MB/s)
#8 7.475 Selecting previously unselected package golang-1.22-doc.
#8 7.475 (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 ... 24451 files and directories currently installed.)
#8 7.484 Preparing to unpack .../0-golang-1.22-doc_1.22.7-1~bpo12+1_all.deb ...
#8 7.484 Unpacking golang-1.22-doc (1.22.7-1~bpo12+1) ...
#8 7.517 Selecting previously unselected package golang-1.22-src.
#8 7.517 Preparing to unpack .../1-golang-1.22-src_1.22.7-1~bpo12+1_all.deb ...
#8 7.517 Unpacking golang-1.22-src (1.22.7-1~bpo12+1) ...
#8 9.298 Selecting previously unselected package golang-1.22-go.
#8 9.306 Preparing to unpack .../2-golang-1.22-go_1.22.7-1~bpo12+1_amd64.deb ...
#8 9.307 Unpacking golang-1.22-go (1.22.7-1~bpo12+1) ...
#8 10.13 Selecting previously unselected package golang-1.22.
#8 10.13 Preparing to unpack .../3-golang-1.22_1.22.7-1~bpo12+1_all.deb ...
#8 10.13 Unpacking golang-1.22 (1.22.7-1~bpo12+1) ...
#8 10.14 Selecting previously unselected package golang-src.
#8 10.15 Preparing to unpack .../4-golang-src_2%3a1.22~3~bpo12+1_all.deb ...
#8 10.15 Unpacking golang-src (2:1.22~3~bpo12+1) ...
#8 10.16 Selecting previously unselected package golang-go:amd64.
#8 10.16 Preparing to unpack .../5-golang-go_2%3a1.22~3~bpo12+1_amd64.deb ...
#8 10.16 Unpacking golang-go:amd64 (2:1.22~3~bpo12+1) ...
#8 10.18 Selecting previously unselected package golang-doc.
#8 10.18 Preparing to unpack .../6-golang-doc_2%3a1.22~3~bpo12+1_all.deb ...
#8 10.18 Unpacking golang-doc (2:1.22~3~bpo12+1) ...
#8 10.19 Selecting previously unselected package golang:amd64.
#8 10.19 Preparing to unpack .../7-golang_2%3a1.22~3~bpo12+1_amd64.deb ...
#8 10.20 Unpacking golang:amd64 (2:1.22~3~bpo12+1) ...
#8 10.21 Setting up golang-1.22-doc (1.22.7-1~bpo12+1) ...
#8 10.21 Setting up golang-1.22-src (1.22.7-1~bpo12+1) ...
#8 10.21 Setting up golang-src (2:1.22~3~bpo12+1) ...
#8 10.22 Setting up golang-1.22-go (1.22.7-1~bpo12+1) ...
#8 10.22 Setting up golang-1.22 (1.22.7-1~bpo12+1) ...
#8 10.22 Setting up golang-go:amd64 (2:1.22~3~bpo12+1) ...
#8 10.22 Setting up golang-doc (2:1.22~3~bpo12+1) ...
#8 10.22 Setting up golang:amd64 (2:1.22~3~bpo12+1) ...
#8 DONE 10.5s
#9 [builder 3/13] RUN pip install poetry
#9 1.136 Collecting poetry
#9 1.172 Downloading poetry-1.8.3-py3-none-any.whl.metadata (6.8 kB)
#9 1.203 Collecting build<2.0.0,>=1.0.3 (from poetry)
#9 1.207 Downloading build-1.2.2-py3-none-any.whl.metadata (6.2 kB)
#9 1.224 Collecting cachecontrol<0.15.0,>=0.14.0 (from cachecontrol[filecache]<0.15.0,>=0.14.0->poetry)
#9 1.228 Downloading cachecontrol-0.14.0-py3-none-any.whl.metadata (3.1 kB)
#9 1.247 Collecting cleo<3.0.0,>=2.1.0 (from poetry)
#9 1.251 Downloading cleo-2.1.0-py3-none-any.whl.metadata (12 kB)
#9 1.263 Collecting crashtest<0.5.0,>=0.4.1 (from poetry)
#9 1.267 Downloading crashtest-0.4.1-py3-none-any.whl.metadata (1.1 kB)
#9 1.344 Collecting dulwich<0.22.0,>=0.21.2 (from poetry)
#9 1.348 Downloading dulwich-0.21.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.3 kB)
#9 1.363 Collecting fastjsonschema<3.0.0,>=2.18.0 (from poetry)
#9 1.367 Downloading fastjsonschema-2.20.0-py3-none-any.whl.metadata (2.1 kB)
#9 1.381 Collecting installer<0.8.0,>=0.7.0 (from poetry)
#9 1.385 Downloading installer-0.7.0-py3-none-any.whl.metadata (936 bytes)
#9 1.425 Collecting keyring<25.0.0,>=24.0.0 (from poetry)
#9 1.429 Downloading keyring-24.3.1-py3-none-any.whl.metadata (20 kB)
#9 1.449 Collecting packaging>=23.1 (from poetry)
#9 1.452 Downloading packaging-24.1-py3-none-any.whl.metadata (3.2 kB)
#9 1.465 Collecting pexpect<5.0.0,>=4.7.0 (from poetry)
#9 1.468 Downloading pexpect-4.9.0-py2.py3-none-any.whl.metadata (2.5 kB)
#9 1.490 Collecting pkginfo<2.0,>=1.10 (from poetry)
#9 1.495 Downloading pkginfo-1.11.1-py3-none-any.whl.metadata (11 kB)
#9 1.526 Collecting platformdirs<5,>=3.0.0 (from poetry)
#9 1.529 Downloading platformdirs-4.3.6-py3-none-any.whl.metadata (11 kB)
#9 1.554 Collecting poetry-core==1.9.0 (from poetry)
#9 1.557 Downloading poetry_core-1.9.0-py3-none-any.whl.metadata (3.5 kB)
#9 1.573 Collecting poetry-plugin-export<2.0.0,>=1.6.0 (from poetry)
#9 1.577 Downloading poetry_plugin_export-1.8.0-py3-none-any.whl.metadata (2.8 kB)
#9 1.588 Collecting pyproject-hooks<2.0.0,>=1.0.0 (from poetry)
#9 1.592 Downloading pyproject_hooks-1.1.0-py3-none-any.whl.metadata (1.3 kB)
#9 1.620 Collecting requests<3.0,>=2.26 (from poetry)
#9 1.624 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB)
#9 1.637 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from poetry)
#9 1.641 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB)
#9 1.658 Collecting shellingham<2.0,>=1.5 (from poetry)
#9 1.661 Downloading shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB)
#9 1.686 Collecting tomlkit<1.0.0,>=0.11.4 (from poetry)
#9 1.689 Downloading tomlkit-0.13.2-py3-none-any.whl.metadata (2.7 kB)
#9 1.711 Collecting trove-classifiers>=2022.5.19 (from poetry)
#9 1.714 Downloading trove_classifiers-2024.9.12-py3-none-any.whl.metadata (2.2 kB)
#9 1.783 Collecting virtualenv<21.0.0,>=20.23.0 (from poetry)
#9 1.787 Downloading virtualenv-20.26.5-py3-none-any.whl.metadata (4.5 kB)
#9 1.886 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.890 Downloading msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.4 kB)
#9 1.920 Collecting filelock>=3.8.0 (from cachecontrol[filecache]<0.15.0,>=0.14.0->poetry)
#9 1.923 Downloading filelock-3.16.1-py3-none-any.whl.metadata (2.9 kB)
#9 2.322 Collecting rapidfuzz<4.0.0,>=3.0.0 (from cleo<3.0.0,>=2.1.0->poetry)
#9 2.326 Downloading rapidfuzz-3.9.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB)
#9 2.375 Collecting urllib3>=1.25 (from dulwich<0.22.0,>=0.21.2->poetry)
#9 2.379 Downloading urllib3-2.2.3-py3-none-any.whl.metadata (6.5 kB)
#9 2.409 Collecting jaraco.classes (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.412 Downloading jaraco.classes-3.4.0-py3-none-any.whl.metadata (2.6 kB)
#9 2.452 Collecting importlib-metadata>=4.11.4 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.455 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB)
#9 2.469 Collecting SecretStorage>=3.2 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.472 Downloading SecretStorage-3.3.3-py3-none-any.whl.metadata (4.0 kB)
#9 2.489 Collecting jeepney>=0.4.2 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.493 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.517 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl.metadata (1.3 kB)
#9 2.625 Collecting charset-normalizer<4,>=2 (from requests<3.0,>=2.26->poetry)
#9 2.629 Downloading charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)
#9 2.645 Collecting idna<4,>=2.5 (from requests<3.0,>=2.26->poetry)
#9 2.649 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB)
#9 2.680 Collecting certifi>=2017.4.17 (from requests<3.0,>=2.26->poetry)
#9 2.684 Downloading certifi-2024.8.30-py3-none-any.whl.metadata (2.2 kB)
#9 2.727 Collecting distlib<1,>=0.3.7 (from virtualenv<21.0.0,>=20.23.0->poetry)
#9 2.733 Downloading distlib-0.3.8-py2.py3-none-any.whl.metadata (5.1 kB)
#9 2.793 Collecting zipp>=3.20 (from importlib-metadata>=4.11.4->keyring<25.0.0,>=24.0.0->poetry)
#9 2.796 Downloading zipp-3.20.2-py3-none-any.whl.metadata (3.7 kB)
#9 2.940 Collecting cryptography>=2.0 (from SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 2.944 Downloading cryptography-43.0.1-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (5.4 kB)
#9 2.978 Collecting more-itertools (from jaraco.classes->keyring<25.0.0,>=24.0.0->poetry)
#9 2.981 Downloading more_itertools-10.5.0-py3-none-any.whl.metadata (36 kB)
#9 3.072 Collecting cffi>=1.12 (from cryptography>=2.0->SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 3.076 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
#9 3.151 Collecting pycparser (from cffi>=1.12->cryptography>=2.0->SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 3.154 Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
#9 3.172 Downloading poetry-1.8.3-py3-none-any.whl (249 kB)
#9 3.178 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 249.9/249.9 kB 57.2 MB/s eta 0:00:00
#9 3.182 Downloading poetry_core-1.9.0-py3-none-any.whl (309 kB)
#9 3.187 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 309.5/309.5 kB 91.8 MB/s eta 0:00:00
#9 3.192 Downloading build-1.2.2-py3-none-any.whl (22 kB)
#9 3.198 Downloading cachecontrol-0.14.0-py3-none-any.whl (22 kB)
#9 3.205 Downloading cleo-2.1.0-py3-none-any.whl (78 kB)
#9 3.209 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.7/78.7 kB 28.5 MB/s eta 0:00:00
#9 3.214 Downloading crashtest-0.4.1-py3-none-any.whl (7.6 kB)
#9 3.220 Downloading dulwich-0.21.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516 kB)
#9 3.230 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 516.4/516.4 kB 87.8 MB/s eta 0:00:00
#9 3.234 Downloading fastjsonschema-2.20.0-py3-none-any.whl (23 kB)
#9 3.242 Downloading installer-0.7.0-py3-none-any.whl (453 kB)
#9 3.250 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 453.8/453.8 kB 86.6 MB/s eta 0:00:00
#9 3.254 Downloading keyring-24.3.1-py3-none-any.whl (38 kB)
#9 3.261 Downloading packaging-24.1-py3-none-any.whl (53 kB)
#9 3.266 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.0/54.0 kB 18.9 MB/s eta 0:00:00
#9 3.270 Downloading pexpect-4.9.0-py2.py3-none-any.whl (63 kB)
#9 3.274 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.8/63.8 kB 21.6 MB/s eta 0:00:00
#9 3.279 Downloading pkginfo-1.11.1-py3-none-any.whl (31 kB)
#9 3.286 Downloading platformdirs-4.3.6-py3-none-any.whl (18 kB)
#9 3.293 Downloading poetry_plugin_export-1.8.0-py3-none-any.whl (10 kB)
#9 3.299 Downloading pyproject_hooks-1.1.0-py3-none-any.whl (9.2 kB)
#9 3.305 Downloading requests-2.32.3-py3-none-any.whl (64 kB)
#9 3.310 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.9/64.9 kB 23.5 MB/s eta 0:00:00
#9 3.315 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB)
#9 3.319 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.5/54.5 kB 21.0 MB/s eta 0:00:00
#9 3.324 Downloading shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB)
#9 3.331 Downloading tomlkit-0.13.2-py3-none-any.whl (37 kB)
#9 3.337 Downloading trove_classifiers-2024.9.12-py3-none-any.whl (13 kB)
#9 3.350 Downloading virtualenv-20.26.5-py3-none-any.whl (6.0 MB)
#9 3.405 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.0/6.0 MB 131.3 MB/s eta 0:00:00
#9 3.409 Downloading certifi-2024.8.30-py3-none-any.whl (167 kB)
#9 3.413 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 167.3/167.3 kB 79.1 MB/s eta 0:00:00
#9 3.417 Downloading charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140 kB)
#9 3.421 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 140.3/140.3 kB 70.0 MB/s eta 0:00:00
#9 3.424 Downloading distlib-0.3.8-py2.py3-none-any.whl (468 kB)
#9 3.429 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 468.9/468.9 kB 111.7 MB/s eta 0:00:00
#9 3.433 Downloading filelock-3.16.1-py3-none-any.whl (16 kB)
#9 3.439 Downloading idna-3.10-py3-none-any.whl (70 kB)
#9 3.441 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 70.4/70.4 kB 38.9 MB/s eta 0:00:00
#9 3.445 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB)
#9 3.450 Downloading jeepney-0.8.0-py3-none-any.whl (48 kB)
#9 3.453 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.4/48.4 kB 28.5 MB/s eta 0:00:00
#9 3.456 Downloading msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (403 kB)
#9 3.462 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 403.7/403.7 kB 117.2 MB/s eta 0:00:00
#9 3.466 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl (13 kB)
#9 3.471 Downloading rapidfuzz-3.9.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB)
#9 3.497 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/3.4 MB 154.7 MB/s eta 0:00:00
#9 3.501 Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)
#9 3.507 Downloading urllib3-2.2.3-py3-none-any.whl (126 kB)
#9 3.510 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 126.3/126.3 kB 54.7 MB/s eta 0:00:00
#9 3.514 Downloading jaraco.classes-3.4.0-py3-none-any.whl (6.8 kB)
#9 3.520 Downloading cryptography-43.0.1-cp39-abi3-manylinux_2_28_x86_64.whl (4.0 MB)
#9 3.560 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.0/4.0 MB 143.9 MB/s eta 0:00:00
#9 3.565 Downloading zipp-3.20.2-py3-none-any.whl (9.2 kB)
#9 3.570 Downloading more_itertools-10.5.0-py3-none-any.whl (60 kB)
#9 3.573 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.0/61.0 kB 34.5 MB/s eta 0:00:00
#9 3.577 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467 kB)
#9 3.583 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 467.2/467.2 kB 109.3 MB/s eta 0:00:00
#9 3.587 Downloading pycparser-2.22-py3-none-any.whl (117 kB)
#9 3.590 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 117.6/117.6 kB 61.8 MB/s eta 0:00:00
#9 3.766 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.188 Successfully installed SecretStorage-3.3.3 build-1.2.2 cachecontrol-0.14.0 certifi-2024.8.30 cffi-1.17.1 charset-normalizer-3.3.2 cleo-2.1.0 crashtest-0.4.1 cryptography-43.0.1 distlib-0.3.8 dulwich-0.21.7 fastjsonschema-2.20.0 filelock-3.16.1 idna-3.10 importlib-metadata-8.5.0 installer-0.7.0 jaraco.classes-3.4.0 jeepney-0.8.0 keyring-24.3.1 more-itertools-10.5.0 msgpack-1.1.0 packaging-24.1 pexpect-4.9.0 pkginfo-1.11.1 platformdirs-4.3.6 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.7 requests-2.32.3 requests-toolbelt-1.0.0 shellingham-1.5.4 tomlkit-0.13.2 trove-classifiers-2024.9.12 urllib3-2.2.3 virtualenv-20.26.5 zipp-3.20.2
#9 5.189 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.280
#9 5.280 [notice] A new release of pip is available: 24.0 -> 24.2
#9 5.280 [notice] To update, run: pip install --upgrade pip
#9 DONE 5.6s
#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.101 go: downloading github.com/go-python/gopy v0.4.10
#13 0.144 go: downloading github.com/gonuts/commander v0.1.0
#13 0.144 go: downloading github.com/gonuts/flag v0.1.0
#13 0.160 go: downloading github.com/pkg/errors v0.9.1
#13 0.164 go: downloading golang.org/x/tools v0.16.0
#13 0.457 go: downloading golang.org/x/mod v0.14.0
#13 0.503 internal/goarch
#13 0.504 internal/unsafeheader
#13 0.510 internal/cpu
#13 0.511 internal/abi
#13 0.538 internal/bytealg
#13 0.573 internal/chacha8rand
#13 0.595 internal/coverage/rtcov
#13 0.600 internal/godebugs
#13 0.606 internal/goexperiment
#13 0.611 internal/goos
#13 0.614 runtime/internal/atomic
#13 0.637 runtime/internal/math
#13 0.640 runtime/internal/sys
#13 0.646 runtime/internal/syscall
#13 0.649 internal/race
#13 0.654 sync/atomic
#13 0.663 runtime
#13 0.680 unicode
#13 0.772 unicode/utf8
#13 0.796 internal/itoa
#13 0.803 math/bits
#13 0.822 math
#13 0.961 cmp
#13 0.966 slices
#13 0.984 encoding
#13 0.990 unicode/utf16
#13 0.997 internal/gover
#13 1.009 internal/goversion
#13 1.018 internal/platform
#13 1.055 log/internal
#13 1.062 golang.org/x/tools/internal/packagesinternal
#13 2.346 internal/reflectlite
#13 2.348 sync
#13 2.405 internal/testlog
#13 2.426 internal/bisect
#13 2.455 errors
#13 2.464 sort
#13 2.475 io
#13 2.524 bytes
#13 2.552 strconv
#13 2.613 internal/oserror
#13 2.622 syscall
#13 2.661 reflect
#13 2.924 internal/syscall/unix
#13 2.944 time
#13 3.206 internal/fmtsort
#13 3.217 internal/poll
#13 3.226 internal/safefilepath
#13 3.231 internal/syscall/execenv
#13 3.240 path
#13 3.266 io/fs
#13 3.310 encoding/binary
#13 3.324 os
#13 3.392 encoding/base64
#13 3.424 strings
#13 3.514 regexp/syntax
#13 3.536 fmt
#13 3.706 path/filepath
#13 3.712 encoding/json
#13 3.760 github.com/pkg/errors
#13 3.789 go/token
#13 3.832 go/scanner
#13 3.878 go/ast
#13 3.949 go/doc/comment
#13 4.062 regexp
#13 4.081 container/heap
#13 4.092 internal/godebug
#13 4.114 math/rand
#13 4.156 math/big
#13 4.188 internal/lazyregexp
#13 4.200 go/doc
#13 4.325 go/internal/typeparams
#13 4.341 go/build/constraint
#13 4.390 go/parser
#13 4.519 go/constant
#13 4.616 go/version
#13 4.629 internal/buildcfg
#13 4.634 internal/types/errors
#13 4.647 hash
#13 4.657 hash/fnv
#13 4.664 go/types
#13 4.682 context
#13 4.729 os/exec
#13 4.786 github.com/gonuts/flag
#13 4.840 net/url
#13 4.903 text/template/parse
#13 5.075 text/template
#13 5.461 github.com/gonuts/commander
#13 5.486 bufio
#13 5.544 internal/goroot
#13 5.559 go/build
#13 5.751 crypto
#13 5.763 crypto/md5
#13 5.793 golang.org/x/tools/internal/pkgbits
#13 5.888 golang.org/x/tools/internal/tokeninternal
#13 5.903 golang.org/x/mod/semver
#13 5.925 golang.org/x/tools/internal/event/label
#13 5.943 golang.org/x/tools/internal/event/keys
#13 5.994 golang.org/x/tools/internal/event/core
#13 6.016 golang.org/x/tools/internal/event
#13 6.036 golang.org/x/tools/internal/event/tag
#13 6.047 log
#13 6.094 golang.org/x/tools/internal/gocommand
#13 6.147 golang.org/x/tools/go/internal/packagesdriver
#13 6.151 github.com/go-python/gopy/bind
#13 6.159 golang.org/x/tools/internal/typeparams
#13 6.204 golang.org/x/tools/go/types/objectpath
#13 6.239 golang.org/x/tools/internal/gcimporter
#13 6.496 golang.org/x/tools/go/gcexportdata
#13 6.518 golang.org/x/tools/internal/typesinternal
#13 6.536 golang.org/x/tools/internal/versions
#13 6.552 golang.org/x/tools/go/packages
#13 6.671 github.com/go-python/gopy
#13 DONE 6.9s
#14 [builder 8/13] RUN go install golang.org/x/tools/cmd/goimports@latest
#14 0.135 go: downloading golang.org/x/tools v0.25.0
#14 0.444 go: downloading golang.org/x/mod v0.21.0
#14 0.482 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.347 Warning: poetry-plugin-export will not be installed by default in a future version of Poetry.
#16 0.347 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.347 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.292 Ignoring brotlicffi: markers 'platform_python_implementation != "CPython" and python_version >= "3.11" and python_version < "4.0"' don't match your environment
#17 0.293 Ignoring colorama: markers 'python_version >= "3.11" and python_version < "4.0" and platform_system == "Windows"' don't match your environment
#17 0.344 Collecting aiodns==3.2.0 (from -r requirements.txt (line 1))
#17 0.372 Downloading aiodns-3.2.0-py3-none-any.whl.metadata (4.0 kB)
#17 0.389 Collecting aiohappyeyeballs==2.4.0 (from -r requirements.txt (line 2))
#17 0.392 Downloading aiohappyeyeballs-2.4.0-py3-none-any.whl.metadata (5.9 kB)
#17 0.575 Collecting aiohttp==3.10.5 (from aiohttp[speedups]==3.10.5->-r requirements.txt (line 3))
#17 0.580 Downloading aiohttp-3.10.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.5 kB)
#17 0.592 Collecting aiosignal==1.3.1 (from -r requirements.txt (line 4))
#17 0.595 Downloading aiosignal-1.3.1-py3-none-any.whl.metadata (4.0 kB)
#17 0.623 Collecting alembic==1.13.2 (from -r requirements.txt (line 5))
#17 0.626 Downloading alembic-1.13.2-py3-none-any.whl.metadata (7.4 kB)
#17 0.642 Collecting attrs==24.2.0 (from -r requirements.txt (line 6))
#17 0.645 Downloading attrs-24.2.0-py3-none-any.whl.metadata (11 kB)
#17 0.665 Collecting beautifulsoup4==4.12.3 (from -r requirements.txt (line 7))
#17 0.669 Downloading beautifulsoup4-4.12.3-py3-none-any.whl.metadata (3.8 kB)
#17 0.698 Collecting brotli==1.1.0 (from -r requirements.txt (line 8))
#17 0.701 Downloading Brotli-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.5 kB)
#17 0.718 Collecting certifi==2024.8.30 (from -r requirements.txt (line 10))
#17 0.719 Using cached certifi-2024.8.30-py3-none-any.whl.metadata (2.2 kB)
#17 0.804 Collecting cffi==1.17.1 (from -r requirements.txt (line 11))
#17 0.805 Using cached cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
#17 0.851 Collecting charset-normalizer==3.3.2 (from -r requirements.txt (line 12))
#17 0.852 Using cached charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)
#17 0.867 Collecting configargparse==1.7 (from -r requirements.txt (line 14))
#17 0.871 Downloading ConfigArgParse-1.7-py3-none-any.whl.metadata (23 kB)
#17 0.993 Collecting cryptography==43.0.1 (from -r requirements.txt (line 15))
#17 0.994 Using cached cryptography-43.0.1-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (5.4 kB)
#17 1.005 Collecting defusedxml==0.7.1 (from -r requirements.txt (line 16))
#17 1.009 Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB)
#17 1.048 Collecting frozenlist==1.4.1 (from -r requirements.txt (line 17))
#17 1.051 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.141 Collecting greenlet==3.1.0 (from -r requirements.txt (line 18))
#17 1.145 Downloading greenlet-3.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB)
#17 1.158 Collecting idna==3.10 (from -r requirements.txt (line 19))
#17 1.159 Using cached idna-3.10-py3-none-any.whl.metadata (10 kB)
#17 1.171 Collecting linkpreview==0.6.5 (from -r requirements.txt (line 20))
#17 1.176 Downloading linkpreview-0.6.5-py3-none-any.whl.metadata (3.8 kB)
#17 1.221 Collecting mako==1.3.5 (from -r requirements.txt (line 21))
#17 1.224 Downloading Mako-1.3.5-py3-none-any.whl.metadata (2.9 kB)
#17 1.263 Collecting markupsafe==2.1.5 (from -r requirements.txt (line 22))
#17 1.266 Downloading MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB)
#17 1.386 Collecting multidict==6.1.0 (from -r requirements.txt (line 23))
#17 1.389 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB)
#17 1.403 Collecting pickle-secure==0.99.9 (from -r requirements.txt (line 24))
#17 1.407 Downloading pickle_secure-0.99.9-py3-none-any.whl.metadata (2.3 kB)
#17 1.536 Collecting pillow==10.4.0 (from -r requirements.txt (line 25))
#17 1.540 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.2 kB)
#17 1.560 Collecting pyasn1-modules==0.4.1 (from -r requirements.txt (line 26))
#17 1.564 Downloading pyasn1_modules-0.4.1-py3-none-any.whl.metadata (3.5 kB)
#17 1.585 Collecting pyasn1==0.6.1 (from -r requirements.txt (line 27))
#17 1.588 Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB)
#17 1.600 Collecting pybindgen==0.22.1 (from -r requirements.txt (line 28))
#17 1.605 Downloading PyBindGen-0.22.1-py2.py3-none-any.whl.metadata (5.6 kB)
#17 1.638 Collecting pycares==4.4.0 (from -r requirements.txt (line 29))
#17 1.642 Downloading pycares-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.1 kB)
#17 1.653 Collecting pycparser==2.22 (from -r requirements.txt (line 30))
#17 1.654 Using cached pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
#17 1.665 Collecting pypng==0.20220715.0 (from -r requirements.txt (line 31))
#17 1.670 Downloading pypng-0.20220715.0-py3-none-any.whl.metadata (13 kB)
#17 1.685 Collecting python-magic==0.4.27 (from -r requirements.txt (line 32))
#17 1.688 Downloading python_magic-0.4.27-py2.py3-none-any.whl.metadata (5.8 kB)
#17 1.703 Collecting qrcode==7.4.2 (from -r requirements.txt (line 33))
#17 1.707 Downloading qrcode-7.4.2-py3-none-any.whl.metadata (17 kB)
#17 1.762 Collecting requests==2.32.3 (from -r requirements.txt (line 34))
#17 1.763 Using cached requests-2.32.3-py3-none-any.whl.metadata (4.6 kB)
#17 1.779 Collecting slidge==0.2.0b1 (from -r requirements.txt (line 35))
#17 1.783 Downloading slidge-0.2.0b1-py3-none-any.whl.metadata (5.0 kB)
#17 1.799 Collecting slixmpp==1.8.5 (from -r requirements.txt (line 36))
#17 1.805 Downloading slixmpp-1.8.5.tar.gz (574 kB)
#17 1.814 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 574.6/574.6 kB 77.6 MB/s eta 0:00:00
#17 1.935 Installing build dependencies: started
#17 3.054 Installing build dependencies: finished with status 'done'
#17 3.055 Getting requirements to build wheel: started
#17 3.264 Getting requirements to build wheel: finished with status 'done'
#17 3.265 Preparing metadata (pyproject.toml): started
#17 3.457 Preparing metadata (pyproject.toml): finished with status 'done'
#17 3.475 Collecting soupsieve==2.6 (from -r requirements.txt (line 37))
#17 3.479 Downloading soupsieve-2.6-py3-none-any.whl.metadata (4.6 kB)
#17 3.687 Collecting sqlalchemy==2.0.35 (from -r requirements.txt (line 38))
#17 3.691 Downloading SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.6 kB)
#17 3.704 Collecting thumbhash==0.1.2 (from -r requirements.txt (line 39))
#17 3.708 Downloading thumbhash-0.1.2-py3-none-any.whl.metadata (2.1 kB)
#17 3.725 Collecting typing-extensions==4.12.2 (from -r requirements.txt (line 40))
#17 3.729 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB)
#17 3.759 Collecting urllib3==2.2.3 (from -r requirements.txt (line 41))
#17 3.760 Using cached urllib3-2.2.3-py3-none-any.whl.metadata (6.5 kB)
#17 3.926 Collecting yarl==1.11.1 (from -r requirements.txt (line 42))
#17 3.930 Downloading yarl-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (48 kB)
#17 3.934 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.2/48.2 kB 22.0 MB/s eta 0:00:00
#17 4.217 Downloading aiodns-3.2.0-py3-none-any.whl (5.7 kB)
#17 4.223 Downloading aiohappyeyeballs-2.4.0-py3-none-any.whl (12 kB)
#17 4.227 Downloading aiohttp-3.10.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)
#17 4.238 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 145.1 MB/s eta 0:00:00
#17 4.242 Downloading aiosignal-1.3.1-py3-none-any.whl (7.6 kB)
#17 4.247 Downloading alembic-1.13.2-py3-none-any.whl (232 kB)
#17 4.251 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 233.0/233.0 kB 101.8 MB/s eta 0:00:00
#17 4.255 Downloading attrs-24.2.0-py3-none-any.whl (63 kB)
#17 4.258 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.0/63.0 kB 31.6 MB/s eta 0:00:00
#17 4.261 Downloading beautifulsoup4-4.12.3-py3-none-any.whl (147 kB)
#17 4.265 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 147.9/147.9 kB 66.0 MB/s eta 0:00:00
#17 4.271 Downloading Brotli-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB)
#17 4.292 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 163.0 MB/s eta 0:00:00
#17 4.293 Using cached certifi-2024.8.30-py3-none-any.whl (167 kB)
#17 4.295 Using cached cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467 kB)
#17 4.297 Using cached charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140 kB)
#17 4.301 Downloading ConfigArgParse-1.7-py3-none-any.whl (25 kB)
#17 4.303 Using cached cryptography-43.0.1-cp39-abi3-manylinux_2_28_x86_64.whl (4.0 MB)
#17 4.314 Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB)
#17 4.318 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.323 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 272.3/272.3 kB 92.3 MB/s eta 0:00:00
#17 4.328 Downloading greenlet-3.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (622 kB)
#17 4.334 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 622.7/622.7 kB 151.3 MB/s eta 0:00:00
#17 4.336 Using cached idna-3.10-py3-none-any.whl (70 kB)
#17 4.341 Downloading linkpreview-0.6.5-py3-none-any.whl (11 kB)
#17 4.345 Downloading Mako-1.3.5-py3-none-any.whl (78 kB)
#17 4.348 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.6/78.6 kB 42.5 MB/s eta 0:00:00
#17 4.352 Downloading MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28 kB)
#17 4.357 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB)
#17 4.360 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 129.0/129.0 kB 66.1 MB/s eta 0:00:00
#17 4.365 Downloading pickle_secure-0.99.9-py3-none-any.whl (6.6 kB)
#17 4.370 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB)
#17 4.400 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 156.4 MB/s eta 0:00:00
#17 4.404 Downloading pyasn1_modules-0.4.1-py3-none-any.whl (181 kB)
#17 4.408 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 181.5/181.5 kB 73.3 MB/s eta 0:00:00
#17 4.412 Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB)
#17 4.415 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 83.1/83.1 kB 48.0 MB/s eta 0:00:00
#17 4.420 Downloading PyBindGen-0.22.1-py2.py3-none-any.whl (152 kB)
#17 4.423 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 152.8/152.8 kB 77.7 MB/s eta 0:00:00
#17 4.429 Downloading pycares-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288 kB)
#17 4.433 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 288.7/288.7 kB 108.9 MB/s eta 0:00:00
#17 4.434 Using cached pycparser-2.22-py3-none-any.whl (117 kB)
#17 4.438 Downloading pypng-0.20220715.0-py3-none-any.whl (58 kB)
#17 4.441 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.1/58.1 kB 31.4 MB/s eta 0:00:00
#17 4.445 Downloading python_magic-0.4.27-py2.py3-none-any.whl (13 kB)
#17 4.450 Downloading qrcode-7.4.2-py3-none-any.whl (46 kB)
#17 4.453 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 46.2/46.2 kB 23.2 MB/s eta 0:00:00
#17 4.454 Using cached requests-2.32.3-py3-none-any.whl (64 kB)
#17 4.458 Downloading slidge-0.2.0b1-py3-none-any.whl (211 kB)
#17 4.461 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.2/211.2 kB 96.9 MB/s eta 0:00:00
#17 4.465 Downloading soupsieve-2.6-py3-none-any.whl (36 kB)
#17 4.473 Downloading SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB)
#17 4.494 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 168.7 MB/s eta 0:00:00
#17 4.499 Downloading thumbhash-0.1.2-py3-none-any.whl (5.1 kB)
#17 4.504 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB)
#17 4.506 Using cached urllib3-2.2.3-py3-none-any.whl (126 kB)
#17 4.509 Downloading yarl-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (487 kB)
#17 4.515 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 487.8/487.8 kB 133.0 MB/s eta 0:00:00
#17 4.549 Building wheels for collected packages: slixmpp
#17 4.550 Building wheel for slixmpp (pyproject.toml): started
#17 4.997 Building wheel for slixmpp (pyproject.toml): finished with status 'done'
#17 4.998 Created wheel for slixmpp: filename=slixmpp-1.8.5-py3-none-any.whl size=511619 sha256=3065d79fe52d1b5c4b4b08ba7ea0a5963e08bc379b10a80fd3345c1b89cd9469
#17 4.998 Stored in directory: /root/.cache/pip/wheels/bd/36/1f/bb5720bf3bf0d3ad08642be1ea7c2c5e0b63bdf4e2a1dc8798
#17 5.001 Successfully built slixmpp
#17 5.134 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.361 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.8.30 cffi-1.17.1 charset-normalizer-3.3.2 configargparse-1.7 cryptography-43.0.1 defusedxml-0.7.1 frozenlist-1.4.1 greenlet-3.1.0 idna-3.10 linkpreview-0.6.5 mako-1.3.5 markupsafe-2.1.5 multidict-6.1.0 pickle-secure-0.99.9 pillow-10.4.0 pyasn1-0.6.1 pyasn1-modules-0.4.1 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.0b1 slixmpp-1.8.5 soupsieve-2.6 sqlalchemy-2.0.35 thumbhash-0.1.2 typing-extensions-4.12.2 urllib3-2.2.3 yarl-1.11.1
#17 7.388
#17 7.388 [notice] A new release of pip is available: 24.0 -> 24.2
#17 7.388 [notice] To update, run: pip install --upgrade pip
#17 DONE 7.8s
#18 [builder 12/13] COPY ./slidge_whatsapp/*.go ./slidge_whatsapp/go.* /build/
#18 DONE 0.0s
#19 [builder 13/13] RUN gopy build -output=generated -no-make=true /build/
#19 0.032 go build -v /build/
#19 0.039 go: downloading github.com/h2non/filetype v1.1.3
#19 0.039 go: downloading github.com/mattn/go-sqlite3 v1.14.22
#19 0.204 go: downloading go.mau.fi/whatsmeow v0.0.0-20240911102933-bb3364aa3986
#19 0.263 go: downloading golang.org/x/image v0.15.0
#19 0.292 go: downloading google.golang.org/protobuf v1.34.2
#19 0.441 go: downloading github.com/google/uuid v1.6.0
#19 0.441 go: downloading go.mau.fi/libsignal v0.1.1
#19 0.464 go: downloading go.mau.fi/util v0.6.0
#19 0.488 go: downloading github.com/rs/zerolog v1.33.0
#19 0.492 go: downloading github.com/gorilla/websocket v1.5.1
#19 0.511 go: downloading golang.org/x/crypto v0.25.0
#19 0.597 go: downloading golang.org/x/net v0.27.0
#19 0.640 go: downloading filippo.io/edwards25519 v1.1.0
#19 0.656 go: downloading golang.org/x/sys v0.22.0
#19 0.747 go: downloading github.com/mattn/go-colorable v0.1.13
#19 0.769 go: downloading github.com/mattn/go-isatty v0.0.20
#19 0.852 crypto/internal/alias
#19 0.857 crypto/subtle
#19 0.870 github.com/h2non/filetype/matchers/isobmff
#19 0.874 github.com/h2non/filetype/types
#19 0.882 crypto/cipher
#19 0.892 github.com/h2non/filetype/matchers
#19 0.935 crypto/internal/boring/sig
#19 0.954 crypto/internal/boring
#19 0.971 github.com/h2non/filetype
#19 0.972 crypto/sha1
#19 1.003 crypto/sha256
#19 1.009 crypto/sha512
#19 1.041 database/sql/driver
#19 1.053 runtime/cgo
#19 1.115 database/sql
#19 1.328 hash/adler32
#19 1.339 compress/zlib
#19 1.356 crypto/aes
#19 1.395 crypto/hmac
#19 1.406 encoding/base32
#19 1.431 encoding/hex
#19 1.453 crypto/internal/randutil
#19 1.463 crypto/rand
#19 1.485 vendor/golang.org/x/net/dns/dnsmessage
#19 1.534 github.com/mattn/go-sqlite3
#19 1.626 internal/nettrace
#19 1.631 internal/singleflight
#19 1.640 internal/intern
#19 1.654 net/netip
#19 1.759 net
#19 2.982 github.com/google/uuid
#19 3.028 container/list
#19 3.042 crypto/des
#19 3.059 crypto/internal/edwards25519/field
#19 3.092 crypto/internal/nistec/fiat
#19 3.320 embed
#19 3.342 crypto/internal/nistec
#19 3.457 crypto/ecdh
#19 3.495 crypto/elliptic
#19 3.574 crypto/internal/bigmod
#19 3.632 crypto/internal/boring/bbig
#19 3.639 encoding/asn1
#19 3.775 vendor/golang.org/x/crypto/cryptobyte/asn1
#19 3.780 vendor/golang.org/x/crypto/cryptobyte
#19 3.849 crypto/ecdsa
#19 3.927 crypto/internal/edwards25519
#19 3.996 crypto/ed25519
#19 4.021 crypto/rc4
#19 4.031 crypto/rsa
#19 4.094 crypto/dsa
#19 4.112 crypto/x509/pkix
#19 4.131 encoding/pem
#19 4.151 crypto/x509
#19 4.480 vendor/golang.org/x/crypto/internal/alias
#19 4.485 vendor/golang.org/x/crypto/chacha20
#19 4.520 vendor/golang.org/x/crypto/internal/poly1305
#19 4.552 vendor/golang.org/x/sys/cpu
#19 4.586 vendor/golang.org/x/crypto/chacha20poly1305
#19 4.641 vendor/golang.org/x/crypto/hkdf
#19 4.651 crypto/tls
#19 5.404 golang.org/x/net/internal/socks
#19 5.447 golang.org/x/net/proxy
#19 5.474 vendor/golang.org/x/text/transform
#19 5.499 vendor/golang.org/x/text/unicode/bidi
#19 5.580 vendor/golang.org/x/text/secure/bidirule
#19 5.603 vendor/golang.org/x/text/unicode/norm
#19 5.785 vendor/golang.org/x/net/idna
#19 5.888 net/textproto
#19 5.933 vendor/golang.org/x/net/http/httpguts
#19 5.950 vendor/golang.org/x/net/http/httpproxy
#19 5.973 vendor/golang.org/x/net/http2/hpack
#19 6.033 mime
#19 6.093 mime/quotedprintable
#19 6.107 mime/multipart
#19 6.155 net/http/httptrace
#19 6.170 net/http/internal
#19 6.186 net/http/internal/ascii
#19 6.193 net/http
#19 7.662 github.com/gorilla/websocket
#19 7.806 golang.org/x/sys/unix
#19 8.341 github.com/mattn/go-isatty
#19 8.354 github.com/mattn/go-colorable
#19 8.363 github.com/rs/zerolog/internal/json
#19 8.431 github.com/rs/zerolog
#19 8.750 filippo.io/edwards25519/field
#19 8.784 filippo.io/edwards25519
#19 8.865 go.mau.fi/libsignal/logger
#19 8.880 golang.org/x/crypto/curve25519
#19 8.892 go.mau.fi/libsignal/ecc
#19 8.912 go.mau.fi/libsignal/cipher
#19 8.925 golang.org/x/crypto/hkdf
#19 8.933 go.mau.fi/libsignal/kdf
#19 8.940 go.mau.fi/libsignal/util/bytehelper
#19 8.950 go.mau.fi/libsignal/groups/ratchet
#19 8.961 go.mau.fi/libsignal/signalerror
#19 8.967 go.mau.fi/libsignal/groups/state/record
#19 8.986 go.mau.fi/libsignal/keys/identity
#19 8.996 go.mau.fi/libsignal/util/optional
#19 9.002 go.mau.fi/libsignal/protocol
#19 9.031 go.mau.fi/libsignal/groups/state/store
#19 9.037 go.mau.fi/libsignal/keys/message
#19 9.045 go.mau.fi/libsignal/keys/chain
#19 9.056 go.mau.fi/libsignal/keys/session
#19 9.064 go.mau.fi/libsignal/keys/root
#19 9.075 go.mau.fi/libsignal/util/errorhelper
#19 9.082 go.mau.fi/libsignal/state/record
#19 9.145 google.golang.org/protobuf/internal/detrand
#19 9.157 google.golang.org/protobuf/internal/errors
#19 9.168 google.golang.org/protobuf/encoding/protowire
#19 9.189 google.golang.org/protobuf/internal/pragma
#19 9.195 google.golang.org/protobuf/reflect/protoreflect
#19 9.338 google.golang.org/protobuf/internal/encoding/messageset
#19 9.359 google.golang.org/protobuf/internal/flags
#19 9.364 google.golang.org/protobuf/internal/genid
#19 9.385 google.golang.org/protobuf/internal/order
#19 9.403 google.golang.org/protobuf/internal/strs
#19 9.422 google.golang.org/protobuf/reflect/protoregistry
#19 9.481 google.golang.org/protobuf/runtime/protoiface
#19 9.490 google.golang.org/protobuf/proto
#19 9.583 google.golang.org/protobuf/internal/descfmt
#19 9.623 google.golang.org/protobuf/internal/descopts
#19 9.629 google.golang.org/protobuf/internal/editiondefaults
#19 9.634 google.golang.org/protobuf/internal/encoding/text
#19 9.714 google.golang.org/protobuf/internal/encoding/defval
#19 9.733 google.golang.org/protobuf/internal/filedesc
#19 10.02 google.golang.org/protobuf/internal/set
#19 10.02 google.golang.org/protobuf/encoding/prototext
#19 10.12 google.golang.org/protobuf/internal/encoding/tag
#19 10.14 google.golang.org/protobuf/internal/impl
#19 11.16 google.golang.org/protobuf/internal/filetype
#19 11.19 google.golang.org/protobuf/internal/version
#19 11.20 google.golang.org/protobuf/runtime/protoimpl
#19 11.21 go.mau.fi/libsignal/serialize
#19 11.31 go.mau.fi/libsignal/util/keyhelper
#19 11.32 go.mau.fi/libsignal/groups
#19 11.34 go.mau.fi/libsignal/keys/prekey
#19 11.35 go.mau.fi/libsignal/ratchet
#19 11.36 go.mau.fi/libsignal/state/store
#19 11.38 go.mau.fi/libsignal/util/medium
#19 11.38 go.mau.fi/libsignal/session
#19 11.42 go.mau.fi/util/fallocate
#19 11.44 go.mau.fi/util/random
#19 11.45 go.mau.fi/util/retryafter
#19 11.46 go.mau.fi/whatsmeow/util/hkdfutil
#19 11.47 go.mau.fi/whatsmeow/appstate/lthash
#19 11.47 go.mau.fi/whatsmeow/binary/token
#19 11.48 go.mau.fi/util/jsontime
#19 11.73 go.mau.fi/whatsmeow/proto/waAdv
#19 11.76 go.mau.fi/whatsmeow/proto/waCert
#19 11.78 go.mau.fi/whatsmeow/proto/waUserPassword
#19 11.80 go.mau.fi/whatsmeow/proto/waChatLockSettings
#19 11.82 go.mau.fi/whatsmeow/proto/waCommon
#19 11.85 go.mau.fi/whatsmeow/proto/waCompanionReg
#19 11.88 go.mau.fi/whatsmeow/proto/waDeviceCapabilities
#19 11.90 go.mau.fi/whatsmeow/proto/waMmsRetry
#19 11.92 go.mau.fi/whatsmeow/proto/waE2E
#19 12.68 go.mau.fi/whatsmeow/proto/waEphemeral
#19 12.70 go.mau.fi/whatsmeow/proto/waSyncAction
#19 12.87 go.mau.fi/whatsmeow/proto/waWeb
#19 13.01 go.mau.fi/whatsmeow/proto/waHistorySync
#19 13.13 go.mau.fi/whatsmeow/proto/armadilloutil
#19 13.13 go.mau.fi/whatsmeow/proto/waArmadilloXMA
#19 13.17 go.mau.fi/whatsmeow/proto/waArmadilloApplication
#19 13.29 go.mau.fi/whatsmeow/proto/waMediaTransport
#19 13.37 go.mau.fi/whatsmeow/proto/waConsumerApplication
#19 13.46 go.mau.fi/whatsmeow/proto/waMultiDevice
#19 13.49 go.mau.fi/whatsmeow/proto/waMsgApplication
#19 13.55 go.mau.fi/whatsmeow/proto/waMsgTransport
#19 13.59 go.mau.fi/whatsmeow/proto/waQuickPromotionSurfaces
#19 13.63 go.mau.fi/whatsmeow/proto/waServerSync
#19 13.67 go.mau.fi/whatsmeow/proto/waVnameCert
#19 13.72 go.mau.fi/whatsmeow/proto/waWa6
#19 13.79 go.mau.fi/whatsmeow/binary/proto
#19 13.85 go.mau.fi/whatsmeow/types
#19 13.92 go.mau.fi/whatsmeow/binary
#19 13.98 go.mau.fi/whatsmeow/util/keys
#19 13.99 go.mau.fi/whatsmeow/util/log
#19 14.02 go.mau.fi/whatsmeow/store
#19 14.08 go.mau.fi/whatsmeow/util/cbcutil
#19 14.10 go.mau.fi/whatsmeow/appstate
#19 14.17 go.mau.fi/whatsmeow/proto
#19 14.19 go.mau.fi/whatsmeow/util/gcmutil
#19 14.20 go.mau.fi/whatsmeow/socket
#19 14.24 go.mau.fi/whatsmeow/types/events
#19 14.33 golang.org/x/crypto/pbkdf2
#19 14.34 runtime/debug
#19 14.38 go.mau.fi/whatsmeow
#19 15.37 go.mau.fi/whatsmeow/store/sqlstore
#19 15.45 golang.org/x/image/riff
#19 15.47 image/color
#19 15.49 image
#19 15.60 golang.org/x/image/vp8
#19 15.68 golang.org/x/image/vp8l
#19 15.73 golang.org/x/image/webp
#19 15.75 image/internal/imageutil
#19 15.76 image/jpeg
#19 15.82 image/png
#19 28.09 git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp
#19 29.59
#19 29.59 --- Processing package: git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp ---
#19 29.59 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 29.59 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 29.59 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 29.59 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 29.59 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 29.62
#19 29.62 --- building package ---
#19 29.62 gopy build -output=generated -no-make=true /build/
#19 29.62 goimports -w whatsapp.go
#19 29.87 go build -mod=mod -buildmode=c-shared -o whatsapp_go.so .
#19 62.90 /venv/bin/python build.py
#19 63.01 CGO_CFLAGS="-I/usr/local/include/python3.11" -fPIC -Ofast
#19 63.01 CGO_LDFLAGS="-L/usr/local/lib" "-lpython3.11" -ldl -lm
#19 63.01 go build -mod=mod -buildmode=c-shared -o _whatsapp.cpython-311-x86_64-linux-gnu.so .
#19 DONE 93.7s
#20 [builder-wheel 1/9] RUN pip install pybindgen
#20 0.470 Requirement already satisfied: pybindgen in /venv/lib/python3.11/site-packages (0.22.1)
#20 0.628
#20 0.628 [notice] A new release of pip is available: 24.0 -> 24.2
#20 0.628 [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.346 Creating virtualenv slidge-whatsapp-XDF0t07c-py3.11 in /root/.cache/pypoetry/virtualenvs
#26 0.637 Preparing build environment with build-system requirements poetry-core, pybindgen
#26 1.701 Building slidge-whatsapp (0.0.0-dev+20240918_git070afb6f10)
#26 1.710 - Building sdist
#26 1.732 - Built slidge_whatsapp-0.0.0.dev0+20240918.git070afb6f10.tar.gz
#26 1.733 - Building wheel
#26 2.014 go build -v .
#26 2.115 git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp/slidge_whatsapp
#26 3.783
#26 3.783 --- Processing package: git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp/slidge_whatsapp ---
#26 3.783 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.784 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.784 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.784 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.784 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.810
#26 3.810 --- building package ---
#26 3.810 gopy build -output=generated -no-make=true .
#26 3.810 goimports -w whatsapp.go
#26 3.947 go build -mod=mod -buildmode=c-shared -o whatsapp_go.so .
#26 7.471 /venv/bin/python build.py
#26 7.575 CGO_CFLAGS="-I/usr/local/include/python3.11" -fPIC -Ofast
#26 7.575 CGO_LDFLAGS="-L/usr/local/lib" "-lpython3.11" -ldl -lm
#26 7.575 go build -mod=mod -buildmode=c-shared -o _whatsapp.cpython-311-x86_64-linux-gnu.so .
#26 12.27 - Built slidge_whatsapp-0.0.0.dev0+20240918.git070afb6f10-cp311-cp311-manylinux_2_36_x86_64.whl
#26 DONE 12.4s
#27 [builder-wheel 8/9] RUN ls -l ./dist
#27 0.053 total 8916
#27 0.053 -rw-r--r-- 1 root root 9086543 Sep 18 05:26 slidge_whatsapp-0.0.0.dev0+20240918.git070afb6f10-cp311-cp311-manylinux_2_36_x86_64.whl
#27 0.053 -rw-r--r-- 1 root root 37616 Sep 18 05:26 slidge_whatsapp-0.0.0.dev0+20240918.git070afb6f10.tar.gz
#27 DONE 0.1s
#28 [builder-wheel 9/9] RUN python --version
#28 0.034 Python 3.11.10
#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.13MB 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+20240918.git070afb6f10.tar.gz dist/
+ mv dist-mess/slidge_whatsapp-0.0.0.dev0+20240918.git070afb6f10-cp311-cp311-manylinux_2_36_x86_64.whl dist/
+ tar cvf /home/build/packages.tar dist/slidge_whatsapp-0.0.0.dev0+20240918.git070afb6f10-cp311-cp311-manylinux_2_36_x86_64.whl dist/slidge_whatsapp-0.0.0.dev0+20240918.git070afb6f10.tar.gz
dist/slidge_whatsapp-0.0.0.dev0+20240918.git070afb6f10-cp311-cp311-manylinux_2_36_x86_64.whl
dist/slidge_whatsapp-0.0.0.dev0+20240918.git070afb6f10.tar.gz
|