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
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307 |
+ 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 "optimistic_ride" 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_optimistic_ride0
#1 creating container buildx_buildkit_optimistic_ride0 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.17kB 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:86eeafd0d69e4790943e3a95c810bd84dd1bdbd2e72b3bb5f516f36efb3cbb4d 19.83MB / 19.83MB 0.4s done
#7 sha256:00683c1a0086a31822e73abd9b7fa8fac88afc579ba4ad8cf366c8043d8356a3 6.16MB / 6.16MB 0.3s done
#7 sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c 3.15MB / 64.14MB 0.2s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 19.92MB / 211.24MB 0.3s
#7 sha256:3cbbe86a28c2f6b3c3e0e8c6dcfba369e1ea656cf8daf69be789e0fe2105982b 6.29MB / 24.05MB 0.2s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 45.09MB / 211.24MB 0.5s
#7 sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c 27.89MB / 64.14MB 0.3s
#7 sha256:3cbbe86a28c2f6b3c3e0e8c6dcfba369e1ea656cf8daf69be789e0fe2105982b 22.02MB / 24.05MB 0.3s
#7 sha256:903681d87777d28dc56866a07a2774c3fd5bf65fd734b24c9d0ecd9a13c9f636 3.15MB / 49.55MB 0.2s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 65.01MB / 211.24MB 0.6s
#7 sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c 64.14MB / 64.14MB 0.6s
#7 sha256:3cbbe86a28c2f6b3c3e0e8c6dcfba369e1ea656cf8daf69be789e0fe2105982b 24.05MB / 24.05MB 0.3s done
#7 sha256:903681d87777d28dc56866a07a2774c3fd5bf65fd734b24c9d0ecd9a13c9f636 25.17MB / 49.55MB 0.3s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 90.18MB / 211.24MB 0.8s
#7 sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c 64.14MB / 64.14MB 0.6s done
#7 sha256:903681d87777d28dc56866a07a2774c3fd5bf65fd734b24c9d0ecd9a13c9f636 42.99MB / 49.55MB 0.5s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 113.25MB / 211.24MB 0.9s
#7 sha256:903681d87777d28dc56866a07a2774c3fd5bf65fd734b24c9d0ecd9a13c9f636 49.55MB / 49.55MB 0.5s done
#7 extracting sha256:903681d87777d28dc56866a07a2774c3fd5bf65fd734b24c9d0ecd9a13c9f636
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 147.85MB / 211.24MB 1.1s
#7 sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 180.36MB / 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.4s done
#7 DONE 2.4s
#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.7s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:f7543d9969bdc112dd9819ca642e14433fdacfe857f170f6b803392fc7e451ad
#7 extracting sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c
#7 extracting sha256:6ed93aa58a52c9abc1ee472f1ac74b73d3adcccc2c30744498fd5f14f3f5d22c 1.4s done
#7 DONE 4.2s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:f7543d9969bdc112dd9819ca642e14433fdacfe857f170f6b803392fc7e451ad
#7 extracting sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf
#7 extracting sha256:787c78da43830be6d988d34c7ee091f98d828516ce5478ca10a4933d655191bf 3.6s done
#7 DONE 7.7s
#7 [builder 1/13] FROM docker.io/library/python:3.11-bookworm@sha256:f7543d9969bdc112dd9819ca642e14433fdacfe857f170f6b803392fc7e451ad
#7 extracting sha256:00683c1a0086a31822e73abd9b7fa8fac88afc579ba4ad8cf366c8043d8356a3 0.1s done
#7 DONE 7.9s
#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 8.3s
#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.4s
#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.075 Get:1 http://deb.debian.org/debian bookworm-backports InRelease [56.6 kB]
#8 0.080 Get:2 http://deb.debian.org/debian bookworm InRelease [151 kB]
#8 0.082 Get:3 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
#8 0.085 Get:4 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
#8 0.164 Get:5 http://deb.debian.org/debian bookworm-backports/main amd64 Packages [238 kB]
#8 0.211 Get:6 http://deb.debian.org/debian bookworm/main amd64 Packages [8787 kB]
#8 0.278 Get:7 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [13.8 kB]
#8 0.326 Get:8 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [179 kB]
#8 0.805 Fetched 9529 kB in 1s (12.9 MB/s)
#8 0.805 Reading package lists...
#8 1.245 Reading package lists...
#8 1.558 Building dependency tree...
#8 1.656 Reading state information...
#8 1.735 ca-certificates is already the newest version (20230311).
#8 1.735 git is already the newest version (1:2.39.2-1.1).
#8 1.735 gcc is already the newest version (4:12.2.0-3).
#8 1.735 g++ is already the newest version (4:12.2.0-3).
#8 1.735 libffi-dev is already the newest version (3.4.4-1).
#8 1.735 pkg-config is already the newest version (1.8.1-1).
#8 1.735 pkg-config set to manually installed.
#8 1.735 The following additional packages will be installed:
#8 1.735 libcurl3-gnutls libcurl4 libcurl4-openssl-dev libgit2-1.5 libhttp-parser2.9
#8 1.735 libjs-jquery libjs-sphinxdoc libjs-underscore libllvm14 libmbedcrypto7
#8 1.735 libmbedtls14 libmbedx509-1 libpython3-dev libpython3.11 libpython3.11-dev
#8 1.735 libpython3.11-minimal libpython3.11-stdlib libssl3 libstd-rust-1.63
#8 1.736 libstd-rust-dev libz3-4 openssl python3.11 python3.11-dev python3.11-minimal
#8 1.736 Suggested packages:
#8 1.736 cargo-doc libcurl4-doc libidn-dev libldap2-dev librtmp-dev libssh2-1-dev
#8 1.736 libssl-doc python3.11-venv python3.11-doc binfmt-support lld-14 clang-14
#8 1.736 Recommended packages:
#8 1.736 javascript-common llvm-14
#8 1.842 The following NEW packages will be installed:
#8 1.843 build-essential cargo libgit2-1.5 libhttp-parser2.9 libjs-jquery
#8 1.843 libjs-sphinxdoc libjs-underscore libllvm14 libmbedcrypto7 libmbedtls14
#8 1.843 libmbedx509-1 libpython3-dev libpython3.11 libpython3.11-dev
#8 1.843 libstd-rust-1.63 libstd-rust-dev libz3-4 python3-dev python3.11-dev rustc
#8 1.843 The following packages will be upgraded:
#8 1.844 curl libcurl3-gnutls libcurl4 libcurl4-openssl-dev libpython3.11-minimal
#8 1.844 libpython3.11-stdlib libssl-dev libssl3 openssl python3.11
#8 1.844 python3.11-minimal
#8 1.861 11 upgraded, 20 newly installed, 0 to remove and 22 not upgraded.
#8 1.861 Need to get 109 MB of archives.
#8 1.861 After this operation, 459 MB of additional disk space will be used.
#8 1.861 Get:1 http://deb.debian.org/debian bookworm/main amd64 libssl-dev amd64 3.0.14-1~deb12u1 [2438 kB]
#8 1.878 Get:2 http://deb.debian.org/debian bookworm/main amd64 libssl3 amd64 3.0.14-1~deb12u1 [2024 kB]
#8 1.889 Get:3 http://deb.debian.org/debian-security bookworm-security/main amd64 python3.11 amd64 3.11.2-6+deb12u3 [573 kB]
#8 1.891 Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11-stdlib amd64 3.11.2-6+deb12u3 [1797 kB]
#8 1.897 Get:5 http://deb.debian.org/debian-security bookworm-security/main amd64 python3.11-minimal amd64 3.11.2-6+deb12u3 [2067 kB]
#8 1.903 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11-minimal amd64 3.11.2-6+deb12u3 [816 kB]
#8 1.907 Get:7 http://deb.debian.org/debian bookworm/main amd64 build-essential amd64 12.9 [7704 B]
#8 1.907 Get:8 http://deb.debian.org/debian bookworm/main amd64 libcurl3-gnutls amd64 7.88.1-10+deb12u7 [385 kB]
#8 1.908 Get:9 http://deb.debian.org/debian bookworm/main amd64 libhttp-parser2.9 amd64 2.9.4-5 [22.0 kB]
#8 1.908 Get:10 http://deb.debian.org/debian bookworm/main amd64 libmbedcrypto7 amd64 2.28.3-1 [277 kB]
#8 1.910 Get:11 http://deb.debian.org/debian bookworm/main amd64 libmbedx509-1 amd64 2.28.3-1 [128 kB]
#8 1.910 Get:12 http://deb.debian.org/debian bookworm/main amd64 libmbedtls14 amd64 2.28.3-1 [163 kB]
#8 1.911 Get:13 http://deb.debian.org/debian bookworm/main amd64 libgit2-1.5 amd64 1.5.1+ds-1+deb12u1 [502 kB]
#8 1.912 Get:14 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB]
#8 1.936 Get:15 http://deb.debian.org/debian bookworm/main amd64 libllvm14 amd64 1:14.0.6-12 [21.8 MB]
#8 2.014 Get:16 http://deb.debian.org/debian bookworm/main amd64 libstd-rust-1.63 amd64 1.63.0+dfsg1-2 [18.7 MB]
#8 2.075 Get:17 http://deb.debian.org/debian bookworm/main amd64 libstd-rust-dev amd64 1.63.0+dfsg1-2 [33.9 MB]
#8 2.222 Get:18 http://deb.debian.org/debian bookworm/main amd64 rustc amd64 1.63.0+dfsg1-2 [2613 kB]
#8 2.235 Get:19 http://deb.debian.org/debian bookworm/main amd64 cargo amd64 0.66.0+ds1-1 [3419 kB]
#8 2.250 Get:20 http://deb.debian.org/debian bookworm/main amd64 libcurl4-openssl-dev amd64 7.88.1-10+deb12u7 [491 kB]
#8 2.253 Get:21 http://deb.debian.org/debian bookworm/main amd64 curl amd64 7.88.1-10+deb12u7 [315 kB]
#8 2.254 Get:22 http://deb.debian.org/debian bookworm/main amd64 libcurl4 amd64 7.88.1-10+deb12u7 [390 kB]
#8 2.256 Get:23 http://deb.debian.org/debian bookworm/main amd64 libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB]
#8 2.258 Get:24 http://deb.debian.org/debian bookworm/main amd64 libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB]
#8 2.259 Get:25 http://deb.debian.org/debian bookworm/main amd64 libjs-sphinxdoc all 5.3.0-4 [130 kB]
#8 2.260 Get:26 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11 amd64 3.11.2-6+deb12u3 [1988 kB]
#8 2.265 Get:27 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11-dev amd64 3.11.2-6+deb12u3 [4734 kB]
#8 2.280 Get:28 http://deb.debian.org/debian bookworm/main amd64 libpython3-dev amd64 3.11.2-1+b1 [9572 B]
#8 2.280 Get:29 http://deb.debian.org/debian bookworm/main amd64 openssl amd64 3.0.14-1~deb12u1 [1423 kB]
#8 2.284 Get:30 http://deb.debian.org/debian-security bookworm-security/main amd64 python3.11-dev amd64 3.11.2-6+deb12u3 [616 kB]
#8 2.286 Get:31 http://deb.debian.org/debian bookworm/main amd64 python3-dev amd64 3.11.2-1+b1 [26.2 kB]
#8 2.382 debconf: delaying package configuration, since apt-utils is not installed
#8 2.411 Fetched 109 MB in 0s (249 MB/s)
#8 2.426 (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.444 Preparing to unpack .../00-libssl-dev_3.0.14-1~deb12u1_amd64.deb ...
#8 2.447 Unpacking libssl-dev:amd64 (3.0.14-1~deb12u1) over (3.0.13-1~deb12u1) ...
#8 2.623 Preparing to unpack .../01-libssl3_3.0.14-1~deb12u1_amd64.deb ...
#8 2.626 Unpacking libssl3:amd64 (3.0.14-1~deb12u1) over (3.0.13-1~deb12u1) ...
#8 2.723 Preparing to unpack .../02-python3.11_3.11.2-6+deb12u3_amd64.deb ...
#8 2.764 Unpacking python3.11 (3.11.2-6+deb12u3) over (3.11.2-6+deb12u2) ...
#8 2.798 Preparing to unpack .../03-libpython3.11-stdlib_3.11.2-6+deb12u3_amd64.deb ...
#8 2.832 Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u3) over (3.11.2-6+deb12u2) ...
#8 3.078 Preparing to unpack .../04-python3.11-minimal_3.11.2-6+deb12u3_amd64.deb ...
#8 3.084 Unpacking python3.11-minimal (3.11.2-6+deb12u3) over (3.11.2-6+deb12u2) ...
#8 3.229 Preparing to unpack .../05-libpython3.11-minimal_3.11.2-6+deb12u3_amd64.deb ...
#8 3.279 Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u3) over (3.11.2-6+deb12u2) ...
#8 3.461 Selecting previously unselected package build-essential.
#8 3.465 Preparing to unpack .../06-build-essential_12.9_amd64.deb ...
#8 3.466 Unpacking build-essential (12.9) ...
#8 3.487 Preparing to unpack .../07-libcurl3-gnutls_7.88.1-10+deb12u7_amd64.deb ...
#8 3.489 Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u7) over (7.88.1-10+deb12u6) ...
#8 3.525 Selecting previously unselected package libhttp-parser2.9:amd64.
#8 3.530 Preparing to unpack .../08-libhttp-parser2.9_2.9.4-5_amd64.deb ...
#8 3.531 Unpacking libhttp-parser2.9:amd64 (2.9.4-5) ...
#8 3.547 Selecting previously unselected package libmbedcrypto7:amd64.
#8 3.551 Preparing to unpack .../09-libmbedcrypto7_2.28.3-1_amd64.deb ...
#8 3.552 Unpacking libmbedcrypto7:amd64 (2.28.3-1) ...
#8 3.577 Selecting previously unselected package libmbedx509-1:amd64.
#8 3.583 Preparing to unpack .../10-libmbedx509-1_2.28.3-1_amd64.deb ...
#8 3.584 Unpacking libmbedx509-1:amd64 (2.28.3-1) ...
#8 3.601 Selecting previously unselected package libmbedtls14:amd64.
#8 3.605 Preparing to unpack .../11-libmbedtls14_2.28.3-1_amd64.deb ...
#8 3.606 Unpacking libmbedtls14:amd64 (2.28.3-1) ...
#8 3.629 Selecting previously unselected package libgit2-1.5:amd64.
#8 3.635 Preparing to unpack .../12-libgit2-1.5_1.5.1+ds-1+deb12u1_amd64.deb ...
#8 3.635 Unpacking libgit2-1.5:amd64 (1.5.1+ds-1+deb12u1) ...
#8 3.676 Selecting previously unselected package libz3-4:amd64.
#8 3.680 Preparing to unpack .../13-libz3-4_4.8.12-3.1_amd64.deb ...
#8 3.680 Unpacking libz3-4:amd64 (4.8.12-3.1) ...
#8 3.981 Selecting previously unselected package libllvm14:amd64.
#8 3.985 Preparing to unpack .../14-libllvm14_1%3a14.0.6-12_amd64.deb ...
#8 3.986 Unpacking libllvm14:amd64 (1:14.0.6-12) ...
#8 4.703 Selecting previously unselected package libstd-rust-1.63:amd64.
#8 4.706 Preparing to unpack .../15-libstd-rust-1.63_1.63.0+dfsg1-2_amd64.deb ...
#8 4.707 Unpacking libstd-rust-1.63:amd64 (1.63.0+dfsg1-2) ...
#8 5.541 Selecting previously unselected package libstd-rust-dev:amd64.
#8 5.542 Preparing to unpack .../16-libstd-rust-dev_1.63.0+dfsg1-2_amd64.deb ...
#8 5.543 Unpacking libstd-rust-dev:amd64 (1.63.0+dfsg1-2) ...
#8 6.719 Selecting previously unselected package rustc.
#8 6.722 Preparing to unpack .../17-rustc_1.63.0+dfsg1-2_amd64.deb ...
#8 6.723 Unpacking rustc (1.63.0+dfsg1-2) ...
#8 6.823 Selecting previously unselected package cargo.
#8 6.826 Preparing to unpack .../18-cargo_0.66.0+ds1-1_amd64.deb ...
#8 6.827 Unpacking cargo (0.66.0+ds1-1) ...
#8 6.987 Preparing to unpack .../19-libcurl4-openssl-dev_7.88.1-10+deb12u7_amd64.deb ...
#8 6.990 Unpacking libcurl4-openssl-dev:amd64 (7.88.1-10+deb12u7) over (7.88.1-10+deb12u6) ...
#8 7.030 Preparing to unpack .../20-curl_7.88.1-10+deb12u7_amd64.deb ...
#8 7.032 Unpacking curl (7.88.1-10+deb12u7) over (7.88.1-10+deb12u6) ...
#8 7.060 Preparing to unpack .../21-libcurl4_7.88.1-10+deb12u7_amd64.deb ...
#8 7.063 Unpacking libcurl4:amd64 (7.88.1-10+deb12u7) over (7.88.1-10+deb12u6) ...
#8 7.092 Selecting previously unselected package libjs-jquery.
#8 7.095 Preparing to unpack .../22-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
#8 7.099 Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
#8 7.123 Selecting previously unselected package libjs-underscore.
#8 7.126 Preparing to unpack .../23-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ...
#8 7.127 Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
#8 7.144 Selecting previously unselected package libjs-sphinxdoc.
#8 7.147 Preparing to unpack .../24-libjs-sphinxdoc_5.3.0-4_all.deb ...
#8 7.148 Unpacking libjs-sphinxdoc (5.3.0-4) ...
#8 7.170 Selecting previously unselected package libpython3.11:amd64.
#8 7.170 Preparing to unpack .../25-libpython3.11_3.11.2-6+deb12u3_amd64.deb ...
#8 7.171 Unpacking libpython3.11:amd64 (3.11.2-6+deb12u3) ...
#8 7.281 Selecting previously unselected package libpython3.11-dev:amd64.
#8 7.284 Preparing to unpack .../26-libpython3.11-dev_3.11.2-6+deb12u3_amd64.deb ...
#8 7.285 Unpacking libpython3.11-dev:amd64 (3.11.2-6+deb12u3) ...
#8 7.530 Selecting previously unselected package libpython3-dev:amd64.
#8 7.533 Preparing to unpack .../27-libpython3-dev_3.11.2-1+b1_amd64.deb ...
#8 7.534 Unpacking libpython3-dev:amd64 (3.11.2-1+b1) ...
#8 7.552 Preparing to unpack .../28-openssl_3.0.14-1~deb12u1_amd64.deb ...
#8 7.554 Unpacking openssl (3.0.14-1~deb12u1) over (3.0.13-1~deb12u1) ...
#8 7.731 Selecting previously unselected package python3.11-dev.
#8 7.735 Preparing to unpack .../29-python3.11-dev_3.11.2-6+deb12u3_amd64.deb ...
#8 7.736 Unpacking python3.11-dev (3.11.2-6+deb12u3) ...
#8 7.758 Selecting previously unselected package python3-dev.
#8 7.761 Preparing to unpack .../30-python3-dev_3.11.2-1+b1_amd64.deb ...
#8 7.762 Unpacking python3-dev (3.11.2-1+b1) ...
#8 7.790 Setting up libssl3:amd64 (3.0.14-1~deb12u1) ...
#8 7.793 Setting up libcurl3-gnutls:amd64 (7.88.1-10+deb12u7) ...
#8 7.794 Setting up libz3-4:amd64 (4.8.12-3.1) ...
#8 7.796 Setting up libmbedcrypto7:amd64 (2.28.3-1) ...
#8 7.798 Setting up libssl-dev:amd64 (3.0.14-1~deb12u1) ...
#8 7.800 Setting up libllvm14:amd64 (1:14.0.6-12) ...
#8 7.802 Setting up build-essential (12.9) ...
#8 7.804 Setting up libcurl4:amd64 (7.88.1-10+deb12u7) ...
#8 7.806 Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u3) ...
#8 7.809 Setting up curl (7.88.1-10+deb12u7) ...
#8 7.810 Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
#8 7.816 Setting up openssl (3.0.14-1~deb12u1) ...
#8 7.819 Setting up libhttp-parser2.9:amd64 (2.9.4-5) ...
#8 7.821 Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
#8 7.823 Setting up python3.11-minimal (3.11.2-6+deb12u3) ...
#8 8.222 Setting up libmbedx509-1:amd64 (2.28.3-1) ...
#8 8.224 Setting up libmbedtls14:amd64 (2.28.3-1) ...
#8 8.226 Setting up libstd-rust-1.63:amd64 (1.63.0+dfsg1-2) ...
#8 8.228 Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u3) ...
#8 8.230 Setting up libstd-rust-dev:amd64 (1.63.0+dfsg1-2) ...
#8 8.232 Setting up libcurl4-openssl-dev:amd64 (7.88.1-10+deb12u7) ...
#8 8.233 Setting up libjs-sphinxdoc (5.3.0-4) ...
#8 8.235 Setting up rustc (1.63.0+dfsg1-2) ...
#8 8.237 Setting up libgit2-1.5:amd64 (1.5.1+ds-1+deb12u1) ...
#8 8.239 Setting up python3.11 (3.11.2-6+deb12u3) ...
#8 8.659 Setting up libpython3.11:amd64 (3.11.2-6+deb12u3) ...
#8 8.662 Setting up cargo (0.66.0+ds1-1) ...
#8 8.664 Setting up libpython3.11-dev:amd64 (3.11.2-6+deb12u3) ...
#8 8.665 Setting up libpython3-dev:amd64 (3.11.2-1+b1) ...
#8 8.667 Setting up python3.11-dev (3.11.2-6+deb12u3) ...
#8 8.669 Setting up python3-dev (3.11.2-1+b1) ...
#8 8.671 Processing triggers for libc-bin (2.36-9+deb12u7) ...
#8 8.722 Reading package lists...
#8 9.041 Building dependency tree...
#8 9.145 Reading state information...
#8 9.229 The following additional packages will be installed:
#8 9.229 golang-1.22 golang-1.22-doc golang-1.22-go golang-1.22-src golang-doc
#8 9.230 golang-go golang-src
#8 9.230 Suggested packages:
#8 9.230 bzr | brz
#8 9.245 The following NEW packages will be installed:
#8 9.245 golang golang-1.22 golang-1.22-doc golang-1.22-go golang-1.22-src golang-doc
#8 9.246 golang-go golang-src
#8 9.264 0 upgraded, 8 newly installed, 0 to remove and 34 not upgraded.
#8 9.264 Need to get 43.8 MB of archives.
#8 9.264 After this operation, 228 MB of additional disk space will be used.
#8 9.264 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 9.271 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 9.344 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 9.410 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 9.410 Get:5 http://deb.debian.org/debian bookworm-backports/main amd64 golang-src all 2:1.22~3~bpo12+1 [5112 B]
#8 9.410 Get:6 http://deb.debian.org/debian bookworm-backports/main amd64 golang-go amd64 2:1.22~3~bpo12+1 [44.3 kB]
#8 9.410 Get:7 http://deb.debian.org/debian bookworm-backports/main amd64 golang-doc all 2:1.22~3~bpo12+1 [5128 B]
#8 9.411 Get:8 http://deb.debian.org/debian bookworm-backports/main amd64 golang amd64 2:1.22~3~bpo12+1 [5068 B]
#8 9.517 debconf: delaying package configuration, since apt-utils is not installed
#8 9.538 Fetched 43.8 MB in 0s (270 MB/s)
#8 9.551 Selecting previously unselected package golang-1.22-doc.
#8 9.551 (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 ... 24439 files and directories currently installed.)
#8 9.562 Preparing to unpack .../0-golang-1.22-doc_1.22.1-1~bpo12+1_all.deb ...
#8 9.562 Unpacking golang-1.22-doc (1.22.1-1~bpo12+1) ...
#8 9.595 Selecting previously unselected package golang-1.22-src.
#8 9.599 Preparing to unpack .../1-golang-1.22-src_1.22.1-1~bpo12+1_all.deb ...
#8 9.600 Unpacking golang-1.22-src (1.22.1-1~bpo12+1) ...
#8 11.72 Selecting previously unselected package golang-1.22-go.
#8 11.73 Preparing to unpack .../2-golang-1.22-go_1.22.1-1~bpo12+1_amd64.deb ...
#8 11.73 Unpacking golang-1.22-go (1.22.1-1~bpo12+1) ...
#8 12.70 Selecting previously unselected package golang-1.22.
#8 12.70 Preparing to unpack .../3-golang-1.22_1.22.1-1~bpo12+1_all.deb ...
#8 12.71 Unpacking golang-1.22 (1.22.1-1~bpo12+1) ...
#8 12.72 Selecting previously unselected package golang-src.
#8 12.73 Preparing to unpack .../4-golang-src_2%3a1.22~3~bpo12+1_all.deb ...
#8 12.73 Unpacking golang-src (2:1.22~3~bpo12+1) ...
#8 12.74 Selecting previously unselected package golang-go:amd64.
#8 12.75 Preparing to unpack .../5-golang-go_2%3a1.22~3~bpo12+1_amd64.deb ...
#8 12.75 Unpacking golang-go:amd64 (2:1.22~3~bpo12+1) ...
#8 12.77 Selecting previously unselected package golang-doc.
#8 12.77 Preparing to unpack .../6-golang-doc_2%3a1.22~3~bpo12+1_all.deb ...
#8 12.77 Unpacking golang-doc (2:1.22~3~bpo12+1) ...
#8 12.79 Selecting previously unselected package golang:amd64.
#8 12.79 Preparing to unpack .../7-golang_2%3a1.22~3~bpo12+1_amd64.deb ...
#8 12.79 Unpacking golang:amd64 (2:1.22~3~bpo12+1) ...
#8 12.81 Setting up golang-1.22-doc (1.22.1-1~bpo12+1) ...
#8 12.81 Setting up golang-1.22-src (1.22.1-1~bpo12+1) ...
#8 12.81 Setting up golang-src (2:1.22~3~bpo12+1) ...
#8 12.82 Setting up golang-1.22-go (1.22.1-1~bpo12+1) ...
#8 12.82 Setting up golang-1.22 (1.22.1-1~bpo12+1) ...
#8 12.82 Setting up golang-go:amd64 (2:1.22~3~bpo12+1) ...
#8 12.82 Setting up golang-doc (2:1.22~3~bpo12+1) ...
#8 12.82 Setting up golang:amd64 (2:1.22~3~bpo12+1) ...
#8 DONE 13.2s
#9 [builder 3/13] RUN pip install poetry
#9 1.602 Collecting poetry
#9 1.630 Downloading poetry-1.8.3-py3-none-any.whl.metadata (6.8 kB)
#9 1.673 Collecting build<2.0.0,>=1.0.3 (from poetry)
#9 1.677 Downloading build-1.2.1-py3-none-any.whl.metadata (4.3 kB)
#9 1.699 Collecting cachecontrol<0.15.0,>=0.14.0 (from cachecontrol[filecache]<0.15.0,>=0.14.0->poetry)
#9 1.702 Downloading cachecontrol-0.14.0-py3-none-any.whl.metadata (3.1 kB)
#9 1.727 Collecting cleo<3.0.0,>=2.1.0 (from poetry)
#9 1.731 Downloading cleo-2.1.0-py3-none-any.whl.metadata (12 kB)
#9 1.746 Collecting crashtest<0.5.0,>=0.4.1 (from poetry)
#9 1.749 Downloading crashtest-0.4.1-py3-none-any.whl.metadata (1.1 kB)
#9 1.864 Collecting dulwich<0.22.0,>=0.21.2 (from poetry)
#9 1.868 Downloading dulwich-0.21.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.3 kB)
#9 1.886 Collecting fastjsonschema<3.0.0,>=2.18.0 (from poetry)
#9 1.890 Downloading fastjsonschema-2.20.0-py3-none-any.whl.metadata (2.1 kB)
#9 1.909 Collecting installer<0.8.0,>=0.7.0 (from poetry)
#9 1.912 Downloading installer-0.7.0-py3-none-any.whl.metadata (936 bytes)
#9 1.946 Collecting keyring<25.0.0,>=24.0.0 (from poetry)
#9 1.949 Downloading keyring-24.3.1-py3-none-any.whl.metadata (20 kB)
#9 1.970 Collecting packaging>=23.1 (from poetry)
#9 1.973 Downloading packaging-24.1-py3-none-any.whl.metadata (3.2 kB)
#9 1.985 Collecting pexpect<5.0.0,>=4.7.0 (from poetry)
#9 1.988 Downloading pexpect-4.9.0-py2.py3-none-any.whl.metadata (2.5 kB)
#9 2.006 Collecting pkginfo<2.0,>=1.10 (from poetry)
#9 2.010 Downloading pkginfo-1.11.1-py3-none-any.whl.metadata (11 kB)
#9 2.032 Collecting platformdirs<5,>=3.0.0 (from poetry)
#9 2.035 Downloading platformdirs-4.2.2-py3-none-any.whl.metadata (11 kB)
#9 2.061 Collecting poetry-core==1.9.0 (from poetry)
#9 2.065 Downloading poetry_core-1.9.0-py3-none-any.whl.metadata (3.5 kB)
#9 2.081 Collecting poetry-plugin-export<2.0.0,>=1.6.0 (from poetry)
#9 2.084 Downloading poetry_plugin_export-1.8.0-py3-none-any.whl.metadata (2.8 kB)
#9 2.094 Collecting pyproject-hooks<2.0.0,>=1.0.0 (from poetry)
#9 2.098 Downloading pyproject_hooks-1.1.0-py3-none-any.whl.metadata (1.3 kB)
#9 2.126 Collecting requests<3.0,>=2.26 (from poetry)
#9 2.129 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB)
#9 2.142 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from poetry)
#9 2.146 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB)
#9 2.164 Collecting shellingham<2.0,>=1.5 (from poetry)
#9 2.167 Downloading shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB)
#9 2.191 Collecting tomlkit<1.0.0,>=0.11.4 (from poetry)
#9 2.194 Downloading tomlkit-0.13.2-py3-none-any.whl.metadata (2.7 kB)
#9 2.218 Collecting trove-classifiers>=2022.5.19 (from poetry)
#9 2.221 Downloading trove_classifiers-2024.7.2-py3-none-any.whl.metadata (2.2 kB)
#9 2.279 Collecting virtualenv<21.0.0,>=20.23.0 (from poetry)
#9 2.283 Downloading virtualenv-20.26.3-py3-none-any.whl.metadata (4.5 kB)
#9 2.372 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 2.376 Downloading msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.1 kB)
#9 2.403 Collecting filelock>=3.8.0 (from cachecontrol[filecache]<0.15.0,>=0.14.0->poetry)
#9 2.407 Downloading filelock-3.15.4-py3-none-any.whl.metadata (2.9 kB)
#9 2.815 Collecting rapidfuzz<4.0.0,>=3.0.0 (from cleo<3.0.0,>=2.1.0->poetry)
#9 2.818 Downloading rapidfuzz-3.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB)
#9 2.855 Collecting urllib3>=1.25 (from dulwich<0.22.0,>=0.21.2->poetry)
#9 2.858 Downloading urllib3-2.2.2-py3-none-any.whl.metadata (6.4 kB)
#9 2.893 Collecting jaraco.classes (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.897 Downloading jaraco.classes-3.4.0-py3-none-any.whl.metadata (2.6 kB)
#9 2.936 Collecting importlib-metadata>=4.11.4 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.939 Downloading importlib_metadata-8.4.0-py3-none-any.whl.metadata (4.7 kB)
#9 2.954 Collecting SecretStorage>=3.2 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.958 Downloading SecretStorage-3.3.3-py3-none-any.whl.metadata (4.0 kB)
#9 2.973 Collecting jeepney>=0.4.2 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.976 Downloading jeepney-0.8.0-py3-none-any.whl.metadata (1.3 kB)
#9 2.991 Collecting ptyprocess>=0.5 (from pexpect<5.0.0,>=4.7.0->poetry)
#9 2.995 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl.metadata (1.3 kB)
#9 3.099 Collecting charset-normalizer<4,>=2 (from requests<3.0,>=2.26->poetry)
#9 3.102 Downloading charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)
#9 3.119 Collecting idna<4,>=2.5 (from requests<3.0,>=2.26->poetry)
#9 3.122 Downloading idna-3.8-py3-none-any.whl.metadata (9.9 kB)
#9 3.149 Collecting certifi>=2017.4.17 (from requests<3.0,>=2.26->poetry)
#9 3.153 Downloading certifi-2024.8.30-py3-none-any.whl.metadata (2.2 kB)
#9 3.198 Collecting distlib<1,>=0.3.7 (from virtualenv<21.0.0,>=20.23.0->poetry)
#9 3.202 Downloading distlib-0.3.8-py2.py3-none-any.whl.metadata (5.1 kB)
#9 3.259 Collecting zipp>=0.5 (from importlib-metadata>=4.11.4->keyring<25.0.0,>=24.0.0->poetry)
#9 3.262 Downloading zipp-3.20.1-py3-none-any.whl.metadata (3.7 kB)
#9 3.406 Collecting cryptography>=2.0 (from SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 3.410 Downloading cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (5.4 kB)
#9 3.450 Collecting more-itertools (from jaraco.classes->keyring<25.0.0,>=24.0.0->poetry)
#9 3.453 Downloading more_itertools-10.4.0-py3-none-any.whl.metadata (36 kB)
#9 3.588 Collecting cffi>=1.12 (from cryptography>=2.0->SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 3.591 Downloading cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
#9 3.636 Collecting pycparser (from cffi>=1.12->cryptography>=2.0->SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 3.639 Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
#9 3.656 Downloading poetry-1.8.3-py3-none-any.whl (249 kB)
#9 3.663 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 249.9/249.9 kB 53.3 MB/s eta 0:00:00
#9 3.667 Downloading poetry_core-1.9.0-py3-none-any.whl (309 kB)
#9 3.672 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 309.5/309.5 kB 92.2 MB/s eta 0:00:00
#9 3.676 Downloading build-1.2.1-py3-none-any.whl (21 kB)
#9 3.681 Downloading cachecontrol-0.14.0-py3-none-any.whl (22 kB)
#9 3.685 Downloading cleo-2.1.0-py3-none-any.whl (78 kB)
#9 3.689 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.7/78.7 kB 38.2 MB/s eta 0:00:00
#9 3.692 Downloading crashtest-0.4.1-py3-none-any.whl (7.6 kB)
#9 3.698 Downloading dulwich-0.21.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516 kB)
#9 3.704 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 516.4/516.4 kB 111.3 MB/s eta 0:00:00
#9 3.707 Downloading fastjsonschema-2.20.0-py3-none-any.whl (23 kB)
#9 3.713 Downloading installer-0.7.0-py3-none-any.whl (453 kB)
#9 3.720 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 453.8/453.8 kB 103.0 MB/s eta 0:00:00
#9 3.723 Downloading keyring-24.3.1-py3-none-any.whl (38 kB)
#9 3.728 Downloading packaging-24.1-py3-none-any.whl (53 kB)
#9 3.731 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.0/54.0 kB 30.4 MB/s eta 0:00:00
#9 3.734 Downloading pexpect-4.9.0-py2.py3-none-any.whl (63 kB)
#9 3.737 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.8/63.8 kB 36.1 MB/s eta 0:00:00
#9 3.740 Downloading pkginfo-1.11.1-py3-none-any.whl (31 kB)
#9 3.745 Downloading platformdirs-4.2.2-py3-none-any.whl (18 kB)
#9 3.749 Downloading poetry_plugin_export-1.8.0-py3-none-any.whl (10 kB)
#9 3.754 Downloading pyproject_hooks-1.1.0-py3-none-any.whl (9.2 kB)
#9 3.759 Downloading requests-2.32.3-py3-none-any.whl (64 kB)
#9 3.762 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.9/64.9 kB 35.5 MB/s eta 0:00:00
#9 3.765 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB)
#9 3.767 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.5/54.5 kB 29.4 MB/s eta 0:00:00
#9 3.771 Downloading shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB)
#9 3.775 Downloading tomlkit-0.13.2-py3-none-any.whl (37 kB)
#9 3.781 Downloading trove_classifiers-2024.7.2-py3-none-any.whl (13 kB)
#9 3.787 Downloading virtualenv-20.26.3-py3-none-any.whl (5.7 MB)
#9 3.824 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.7/5.7 MB 168.4 MB/s eta 0:00:00
#9 3.828 Downloading certifi-2024.8.30-py3-none-any.whl (167 kB)
#9 3.831 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 167.3/167.3 kB 69.8 MB/s eta 0:00:00
#9 3.835 Downloading charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140 kB)
#9 3.838 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 140.3/140.3 kB 61.4 MB/s eta 0:00:00
#9 3.843 Downloading distlib-0.3.8-py2.py3-none-any.whl (468 kB)
#9 3.848 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 468.9/468.9 kB 126.2 MB/s eta 0:00:00
#9 3.851 Downloading filelock-3.15.4-py3-none-any.whl (16 kB)
#9 3.856 Downloading idna-3.8-py3-none-any.whl (66 kB)
#9 3.859 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 66.9/66.9 kB 30.8 MB/s eta 0:00:00
#9 3.862 Downloading importlib_metadata-8.4.0-py3-none-any.whl (26 kB)
#9 3.866 Downloading jeepney-0.8.0-py3-none-any.whl (48 kB)
#9 3.869 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.4/48.4 kB 27.3 MB/s eta 0:00:00
#9 3.873 Downloading msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (409 kB)
#9 3.878 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 409.3/409.3 kB 119.4 MB/s eta 0:00:00
#9 3.881 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl (13 kB)
#9 3.887 Downloading rapidfuzz-3.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB)
#9 3.906 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/3.4 MB 183.8 MB/s eta 0:00:00
#9 3.910 Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)
#9 3.916 Downloading urllib3-2.2.2-py3-none-any.whl (121 kB)
#9 3.919 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 121.4/121.4 kB 50.7 MB/s eta 0:00:00
#9 3.923 Downloading jaraco.classes-3.4.0-py3-none-any.whl (6.8 kB)
#9 3.929 Downloading cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl (4.0 MB)
#9 3.957 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.0/4.0 MB 156.4 MB/s eta 0:00:00
#9 3.961 Downloading zipp-3.20.1-py3-none-any.whl (9.0 kB)
#9 3.966 Downloading more_itertools-10.4.0-py3-none-any.whl (60 kB)
#9 3.970 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 60.9/60.9 kB 30.3 MB/s eta 0:00:00
#9 3.973 Downloading cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466 kB)
#9 3.979 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 466.9/466.9 kB 112.9 MB/s eta 0:00:00
#9 3.982 Downloading pycparser-2.22-py3-none-any.whl (117 kB)
#9 3.988 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 117.6/117.6 kB 54.1 MB/s eta 0:00:00
#9 4.160 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.704 Successfully installed SecretStorage-3.3.3 build-1.2.1 cachecontrol-0.14.0 certifi-2024.8.30 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.704 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.807
#9 5.807 [notice] A new release of pip is available: 24.0 -> 24.2
#9 5.807 [notice] To update, run: pip install --upgrade pip
#9 DONE 6.1s
#10 [builder 4/13] RUN python3 -m venv /venv
#10 DONE 2.2s
#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.106 go: downloading github.com/go-python/gopy v0.4.10
#13 0.165 go: downloading github.com/gonuts/commander v0.1.0
#13 0.165 go: downloading github.com/gonuts/flag v0.1.0
#13 0.183 go: downloading github.com/pkg/errors v0.9.1
#13 0.186 go: downloading golang.org/x/tools v0.16.0
#13 0.525 go: downloading golang.org/x/mod v0.14.0
#13 0.573 internal/goarch
#13 0.574 internal/unsafeheader
#13 0.579 internal/cpu
#13 0.579 internal/abi
#13 0.607 internal/bytealg
#13 0.633 internal/chacha8rand
#13 0.654 internal/coverage/rtcov
#13 0.659 internal/godebugs
#13 0.665 internal/goexperiment
#13 0.669 internal/goos
#13 0.672 runtime/internal/atomic
#13 0.700 runtime/internal/math
#13 0.706 runtime/internal/sys
#13 0.707 runtime/internal/syscall
#13 0.716 internal/race
#13 0.723 sync/atomic
#13 0.725 runtime
#13 0.772 unicode
#13 0.847 unicode/utf8
#13 0.877 internal/itoa
#13 0.885 math/bits
#13 0.901 math
#13 1.020 cmp
#13 1.024 slices
#13 1.035 encoding
#13 1.039 unicode/utf16
#13 1.047 internal/gover
#13 1.061 internal/goversion
#13 1.064 internal/platform
#13 1.112 log/internal
#13 1.122 golang.org/x/tools/internal/packagesinternal
#13 2.528 internal/reflectlite
#13 2.529 sync
#13 2.591 internal/testlog
#13 2.602 internal/bisect
#13 2.631 errors
#13 2.637 sort
#13 2.648 io
#13 2.695 bytes
#13 2.734 strconv
#13 2.772 internal/oserror
#13 2.781 syscall
#13 2.854 reflect
#13 3.039 internal/syscall/unix
#13 3.052 time
#13 3.290 internal/poll
#13 3.394 internal/safefilepath
#13 3.401 internal/syscall/execenv
#13 3.406 path
#13 3.430 io/fs
#13 3.440 internal/fmtsort
#13 3.460 encoding/binary
#13 3.479 os
#13 3.543 encoding/base64
#13 3.575 strings
#13 3.673 fmt
#13 3.674 path/filepath
#13 3.728 regexp/syntax
#13 3.855 encoding/json
#13 3.920 github.com/pkg/errors
#13 3.967 go/token
#13 4.011 go/scanner
#13 4.059 go/ast
#13 4.095 go/doc/comment
#13 4.207 regexp
#13 4.248 container/heap
#13 4.264 internal/godebug
#13 4.297 math/rand
#13 4.321 internal/lazyregexp
#13 4.334 go/doc
#13 4.346 math/big
#13 4.479 go/internal/typeparams
#13 4.488 go/build/constraint
#13 4.521 go/parser
#13 4.752 go/version
#13 4.759 go/constant
#13 4.761 internal/buildcfg
#13 4.795 internal/types/errors
#13 4.804 hash
#13 4.815 hash/fnv
#13 4.845 go/types
#13 4.850 context
#13 4.901 os/exec
#13 4.960 github.com/gonuts/flag
#13 5.012 net/url
#13 5.065 text/template/parse
#13 5.327 text/template
#13 5.575 github.com/gonuts/commander
#13 5.611 bufio
#13 5.667 internal/goroot
#13 5.682 go/build
#13 5.892 crypto
#13 5.904 crypto/md5
#13 5.934 golang.org/x/tools/internal/pkgbits
#13 6.022 golang.org/x/tools/internal/tokeninternal
#13 6.049 golang.org/x/mod/semver
#13 6.086 golang.org/x/tools/internal/event/label
#13 6.120 golang.org/x/tools/internal/event/keys
#13 6.178 golang.org/x/tools/internal/event/core
#13 6.199 golang.org/x/tools/internal/event
#13 6.214 golang.org/x/tools/internal/event/tag
#13 6.220 log
#13 6.262 golang.org/x/tools/internal/gocommand
#13 6.300 github.com/go-python/gopy/bind
#13 6.324 golang.org/x/tools/internal/typeparams
#13 6.376 golang.org/x/tools/go/types/objectpath
#13 6.417 golang.org/x/tools/internal/gcimporter
#13 6.651 golang.org/x/tools/go/gcexportdata
#13 6.673 golang.org/x/tools/go/internal/packagesdriver
#13 6.688 golang.org/x/tools/internal/typesinternal
#13 6.706 golang.org/x/tools/internal/versions
#13 6.722 golang.org/x/tools/go/packages
#13 6.848 github.com/go-python/gopy
#13 DONE 7.1s
#14 [builder 8/13] RUN go install golang.org/x/tools/cmd/goimports@latest
#14 0.127 go: downloading golang.org/x/tools v0.24.0
#14 0.422 go: downloading golang.org/x/mod v0.20.0
#14 0.454 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.335 Warning: poetry-plugin-export will not be installed by default in a future version of Poetry.
#16 0.335 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.335 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.306 Ignoring brotlicffi: markers 'platform_python_implementation != "CPython" and python_version >= "3.11" and python_version < "4.0"' don't match your environment
#17 0.306 Ignoring colorama: markers 'python_version >= "3.11" and python_version < "4.0" and platform_system == "Windows"' don't match your environment
#17 0.345 Collecting aiodns==3.2.0 (from -r requirements.txt (line 1))
#17 0.375 Downloading aiodns-3.2.0-py3-none-any.whl.metadata (4.0 kB)
#17 0.392 Collecting aiohappyeyeballs==2.4.0 (from -r requirements.txt (line 2))
#17 0.395 Downloading aiohappyeyeballs-2.4.0-py3-none-any.whl.metadata (5.9 kB)
#17 0.587 Collecting aiohttp==3.10.5 (from aiohttp[speedups]==3.10.5->-r requirements.txt (line 3))
#17 0.591 Downloading aiohttp-3.10.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.5 kB)
#17 0.605 Collecting aiosignal==1.3.1 (from -r requirements.txt (line 4))
#17 0.609 Downloading aiosignal-1.3.1-py3-none-any.whl.metadata (4.0 kB)
#17 0.640 Collecting alembic==1.13.2 (from -r requirements.txt (line 5))
#17 0.643 Downloading alembic-1.13.2-py3-none-any.whl.metadata (7.4 kB)
#17 0.658 Collecting attrs==24.2.0 (from -r requirements.txt (line 6))
#17 0.661 Downloading attrs-24.2.0-py3-none-any.whl.metadata (11 kB)
#17 0.678 Collecting beautifulsoup4==4.12.3 (from -r requirements.txt (line 7))
#17 0.681 Downloading beautifulsoup4-4.12.3-py3-none-any.whl.metadata (3.8 kB)
#17 0.710 Collecting brotli==1.1.0 (from -r requirements.txt (line 8))
#17 0.714 Downloading Brotli-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.5 kB)
#17 0.731 Collecting certifi==2024.7.4 (from -r requirements.txt (line 10))
#17 0.734 Downloading certifi-2024.7.4-py3-none-any.whl.metadata (2.2 kB)
#17 0.826 Collecting cffi==1.17.0 (from -r requirements.txt (line 11))
#17 0.828 Using cached cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
#17 0.876 Collecting charset-normalizer==3.3.2 (from -r requirements.txt (line 12))
#17 0.878 Using cached charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)
#17 0.893 Collecting configargparse==1.7 (from -r requirements.txt (line 14))
#17 0.896 Downloading ConfigArgParse-1.7-py3-none-any.whl.metadata (23 kB)
#17 1.022 Collecting cryptography==43.0.0 (from -r requirements.txt (line 15))
#17 1.023 Using cached cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (5.4 kB)
#17 1.036 Collecting defusedxml==0.7.1 (from -r requirements.txt (line 16))
#17 1.039 Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB)
#17 1.079 Collecting frozenlist==1.4.1 (from -r requirements.txt (line 17))
#17 1.082 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.171 Collecting greenlet==3.0.3 (from -r requirements.txt (line 18))
#17 1.174 Downloading greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB)
#17 1.188 Collecting idna==3.8 (from -r requirements.txt (line 19))
#17 1.189 Using cached idna-3.8-py3-none-any.whl.metadata (9.9 kB)
#17 1.291 Collecting linkpreview==0.6.5 (from -r requirements.txt (line 20))
#17 1.296 Downloading linkpreview-0.6.5-py3-none-any.whl.metadata (3.8 kB)
#17 1.317 Collecting mako==1.3.5 (from -r requirements.txt (line 21))
#17 1.320 Downloading Mako-1.3.5-py3-none-any.whl.metadata (2.9 kB)
#17 1.379 Collecting markupsafe==2.1.5 (from -r requirements.txt (line 22))
#17 1.382 Downloading MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB)
#17 1.499 Collecting multidict==6.0.5 (from -r requirements.txt (line 23))
#17 1.502 Downloading multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB)
#17 1.604 Collecting pickle-secure==0.99.9 (from -r requirements.txt (line 24))
#17 1.608 Downloading pickle_secure-0.99.9-py3-none-any.whl.metadata (2.3 kB)
#17 1.735 Collecting pillow==10.4.0 (from -r requirements.txt (line 25))
#17 1.739 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.2 kB)
#17 1.762 Collecting pyasn1-modules==0.4.0 (from -r requirements.txt (line 26))
#17 1.765 Downloading pyasn1_modules-0.4.0-py3-none-any.whl.metadata (3.4 kB)
#17 1.789 Collecting pyasn1==0.6.0 (from -r requirements.txt (line 27))
#17 1.792 Downloading pyasn1-0.6.0-py2.py3-none-any.whl.metadata (8.3 kB)
#17 1.807 Collecting pybindgen==0.22.1 (from -r requirements.txt (line 28))
#17 1.811 Downloading PyBindGen-0.22.1-py2.py3-none-any.whl.metadata (5.6 kB)
#17 1.844 Collecting pycares==4.4.0 (from -r requirements.txt (line 29))
#17 1.848 Downloading pycares-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.1 kB)
#17 1.859 Collecting pycparser==2.22 (from -r requirements.txt (line 30))
#17 1.861 Using cached pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
#17 1.871 Collecting pypng==0.20220715.0 (from -r requirements.txt (line 31))
#17 1.874 Downloading pypng-0.20220715.0-py3-none-any.whl.metadata (13 kB)
#17 1.891 Collecting python-magic==0.4.27 (from -r requirements.txt (line 32))
#17 1.894 Downloading python_magic-0.4.27-py2.py3-none-any.whl.metadata (5.8 kB)
#17 1.907 Collecting qrcode==7.4.2 (from -r requirements.txt (line 33))
#17 1.910 Downloading qrcode-7.4.2-py3-none-any.whl.metadata (17 kB)
#17 1.971 Collecting requests==2.32.3 (from -r requirements.txt (line 34))
#17 1.973 Using cached requests-2.32.3-py3-none-any.whl.metadata (4.6 kB)
#17 2.078 Collecting slidge==0.2.0b0 (from -r requirements.txt (line 35))
#17 2.083 Downloading slidge-0.2.0b0-py3-none-any.whl.metadata (5.0 kB)
#17 2.097 Collecting slixmpp==1.8.5 (from -r requirements.txt (line 36))
#17 2.102 Downloading slixmpp-1.8.5.tar.gz (574 kB)
#17 2.110 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 574.6/574.6 kB 107.6 MB/s eta 0:00:00
#17 2.233 Installing build dependencies: started
#17 3.373 Installing build dependencies: finished with status 'done'
#17 3.374 Getting requirements to build wheel: started
#17 3.598 Getting requirements to build wheel: finished with status 'done'
#17 3.600 Preparing metadata (pyproject.toml): started
#17 3.806 Preparing metadata (pyproject.toml): finished with status 'done'
#17 3.826 Collecting soupsieve==2.6 (from -r requirements.txt (line 37))
#17 3.829 Downloading soupsieve-2.6-py3-none-any.whl.metadata (4.6 kB)
#17 4.037 Collecting sqlalchemy==2.0.32 (from -r requirements.txt (line 38))
#17 4.040 Downloading SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.6 kB)
#17 4.142 Collecting thumbhash==0.1.2 (from -r requirements.txt (line 39))
#17 4.147 Downloading thumbhash-0.1.2-py3-none-any.whl.metadata (2.1 kB)
#17 4.167 Collecting typing-extensions==4.12.2 (from -r requirements.txt (line 40))
#17 4.170 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB)
#17 4.202 Collecting urllib3==2.2.2 (from -r requirements.txt (line 41))
#17 4.203 Using cached urllib3-2.2.2-py3-none-any.whl.metadata (6.4 kB)
#17 4.293 Collecting yarl==1.9.4 (from -r requirements.txt (line 42))
#17 4.296 Downloading yarl-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (31 kB)
#17 4.625 Downloading aiodns-3.2.0-py3-none-any.whl (5.7 kB)
#17 4.630 Downloading aiohappyeyeballs-2.4.0-py3-none-any.whl (12 kB)
#17 4.635 Downloading aiohttp-3.10.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)
#17 4.648 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 144.2 MB/s eta 0:00:00
#17 4.651 Downloading aiosignal-1.3.1-py3-none-any.whl (7.6 kB)
#17 4.656 Downloading alembic-1.13.2-py3-none-any.whl (232 kB)
#17 4.660 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 233.0/233.0 kB 78.2 MB/s eta 0:00:00
#17 4.663 Downloading attrs-24.2.0-py3-none-any.whl (63 kB)
#17 4.667 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.0/63.0 kB 31.1 MB/s eta 0:00:00
#17 4.670 Downloading beautifulsoup4-4.12.3-py3-none-any.whl (147 kB)
#17 4.675 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 147.9/147.9 kB 61.5 MB/s eta 0:00:00
#17 4.679 Downloading Brotli-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB)
#17 4.702 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 136.0 MB/s eta 0:00:00
#17 4.706 Downloading certifi-2024.7.4-py3-none-any.whl (162 kB)
#17 4.709 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.0/163.0 kB 74.2 MB/s eta 0:00:00
#17 4.710 Using cached cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466 kB)
#17 4.712 Using cached charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140 kB)
#17 4.715 Downloading ConfigArgParse-1.7-py3-none-any.whl (25 kB)
#17 4.717 Using cached cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl (4.0 MB)
#17 4.727 Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB)
#17 4.732 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.736 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 272.3/272.3 kB 99.1 MB/s eta 0:00:00
#17 4.739 Downloading greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (620 kB)
#17 4.746 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 620.0/620.0 kB 135.6 MB/s eta 0:00:00
#17 4.746 Using cached idna-3.8-py3-none-any.whl (66 kB)
#17 4.750 Downloading linkpreview-0.6.5-py3-none-any.whl (11 kB)
#17 4.754 Downloading Mako-1.3.5-py3-none-any.whl (78 kB)
#17 4.757 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.6/78.6 kB 45.5 MB/s eta 0:00:00
#17 4.760 Downloading MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28 kB)
#17 4.764 Downloading multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (128 kB)
#17 4.767 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 128.7/128.7 kB 69.0 MB/s eta 0:00:00
#17 4.771 Downloading pickle_secure-0.99.9-py3-none-any.whl (6.6 kB)
#17 4.775 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB)
#17 4.805 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 163.3 MB/s eta 0:00:00
#17 4.808 Downloading pyasn1_modules-0.4.0-py3-none-any.whl (181 kB)
#17 4.812 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 181.2/181.2 kB 77.8 MB/s eta 0:00:00
#17 4.815 Downloading pyasn1-0.6.0-py2.py3-none-any.whl (85 kB)
#17 4.817 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 85.3/85.3 kB 46.5 MB/s eta 0:00:00
#17 4.821 Downloading PyBindGen-0.22.1-py2.py3-none-any.whl (152 kB)
#17 4.825 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 152.8/152.8 kB 73.5 MB/s eta 0:00:00
#17 4.829 Downloading pycares-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288 kB)
#17 4.833 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 288.7/288.7 kB 97.6 MB/s eta 0:00:00
#17 4.834 Using cached pycparser-2.22-py3-none-any.whl (117 kB)
#17 4.838 Downloading pypng-0.20220715.0-py3-none-any.whl (58 kB)
#17 4.840 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.1/58.1 kB 31.9 MB/s eta 0:00:00
#17 4.843 Downloading python_magic-0.4.27-py2.py3-none-any.whl (13 kB)
#17 4.848 Downloading qrcode-7.4.2-py3-none-any.whl (46 kB)
#17 4.851 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 46.2/46.2 kB 22.6 MB/s eta 0:00:00
#17 4.852 Using cached requests-2.32.3-py3-none-any.whl (64 kB)
#17 4.856 Downloading slidge-0.2.0b0-py3-none-any.whl (210 kB)
#17 4.859 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 210.3/210.3 kB 86.4 MB/s eta 0:00:00
#17 4.862 Downloading soupsieve-2.6-py3-none-any.whl (36 kB)
#17 4.867 Downloading SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB)
#17 4.891 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 153.0 MB/s eta 0:00:00
#17 4.895 Downloading thumbhash-0.1.2-py3-none-any.whl (5.1 kB)
#17 4.900 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB)
#17 4.902 Using cached urllib3-2.2.2-py3-none-any.whl (121 kB)
#17 4.905 Downloading yarl-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328 kB)
#17 4.911 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 328.1/328.1 kB 105.5 MB/s eta 0:00:00
#17 4.945 Building wheels for collected packages: slixmpp
#17 4.946 Building wheel for slixmpp (pyproject.toml): started
#17 5.388 Building wheel for slixmpp (pyproject.toml): finished with status 'done'
#17 5.389 Created wheel for slixmpp: filename=slixmpp-1.8.5-py3-none-any.whl size=511620 sha256=203a48881c1bbb5d8c0c1f237d01fbfc2ceb3a6ff1168da91dba8fab83963421
#17 5.389 Stored in directory: /root/.cache/pip/wheels/bd/36/1f/bb5720bf3bf0d3ad08642be1ea7c2c5e0b63bdf4e2a1dc8798
#17 5.392 Successfully built slixmpp
#17 5.524 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.846 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.874
#17 7.874 [notice] A new release of pip is available: 24.0 -> 24.2
#17 7.874 [notice] To update, run: pip install --upgrade pip
#17 DONE 8.6s
#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.035 go build -v /build/
#19 0.042 go: downloading github.com/h2non/filetype v1.1.3
#19 0.043 go: downloading github.com/mattn/go-sqlite3 v1.14.22
#19 0.203 go: downloading go.mau.fi/whatsmeow v0.0.0-20240710112833-d732338c041f
#19 0.264 go: downloading golang.org/x/image v0.15.0
#19 0.315 go: downloading github.com/google/uuid v1.6.0
#19 0.323 go: downloading github.com/gorilla/websocket v1.5.1
#19 0.337 go: downloading github.com/rs/zerolog v1.33.0
#19 0.361 go: downloading go.mau.fi/libsignal v0.1.1-0.20240705162345-47e713a595ab
#19 0.386 go: downloading go.mau.fi/util v0.5.0
#19 0.407 go: downloading golang.org/x/crypto v0.25.0
#19 0.502 go: downloading golang.org/x/net v0.27.0
#19 0.502 go: downloading google.golang.org/protobuf v1.34.2
#19 0.691 go: downloading github.com/mattn/go-colorable v0.1.13
#19 0.691 go: downloading filippo.io/edwards25519 v1.1.0
#19 0.714 go: downloading github.com/mattn/go-isatty v0.0.20
#19 0.726 go: downloading golang.org/x/sys v0.22.0
#19 0.917 crypto/internal/alias
#19 0.924 crypto/subtle
#19 0.946 github.com/h2non/filetype/matchers/isobmff
#19 0.950 github.com/h2non/filetype/types
#19 0.956 crypto/cipher
#19 0.968 github.com/h2non/filetype/matchers
#19 1.021 crypto/internal/boring/sig
#19 1.035 crypto/internal/boring
#19 1.036 github.com/h2non/filetype
#19 1.051 crypto/sha1
#19 1.070 crypto/sha256
#19 1.106 crypto/sha512
#19 1.113 database/sql/driver
#19 1.155 runtime/cgo
#19 1.207 database/sql
#19 1.438 hash/adler32
#19 1.449 compress/zlib
#19 1.477 crypto/aes
#19 1.535 crypto/hmac
#19 1.552 encoding/base32
#19 1.589 encoding/hex
#19 1.612 crypto/internal/randutil
#19 1.621 crypto/rand
#19 1.642 vendor/golang.org/x/net/dns/dnsmessage
#19 1.745 github.com/mattn/go-sqlite3
#19 1.791 internal/nettrace
#19 1.796 internal/singleflight
#19 1.811 internal/intern
#19 1.830 net/netip
#19 1.938 net
#19 3.470 github.com/google/uuid
#19 3.532 container/list
#19 3.549 crypto/des
#19 3.576 crypto/internal/edwards25519/field
#19 3.613 crypto/internal/nistec/fiat
#19 3.904 embed
#19 3.930 crypto/internal/nistec
#19 4.058 crypto/ecdh
#19 4.108 crypto/elliptic
#19 4.195 crypto/internal/bigmod
#19 4.265 crypto/internal/boring/bbig
#19 4.274 encoding/asn1
#19 4.391 vendor/golang.org/x/crypto/cryptobyte/asn1
#19 4.399 vendor/golang.org/x/crypto/cryptobyte
#19 4.540 crypto/ecdsa
#19 4.663 crypto/internal/edwards25519
#19 4.771 crypto/ed25519
#19 4.796 crypto/rc4
#19 4.809 crypto/rsa
#19 4.891 crypto/dsa
#19 4.913 crypto/x509/pkix
#19 4.934 encoding/pem
#19 4.965 crypto/x509
#19 5.509 vendor/golang.org/x/crypto/internal/alias
#19 5.516 vendor/golang.org/x/crypto/chacha20
#19 5.539 vendor/golang.org/x/crypto/internal/poly1305
#19 5.567 vendor/golang.org/x/sys/cpu
#19 5.596 vendor/golang.org/x/crypto/chacha20poly1305
#19 5.643 vendor/golang.org/x/crypto/hkdf
#19 5.652 crypto/tls
#19 6.491 golang.org/x/net/internal/socks
#19 6.536 golang.org/x/net/proxy
#19 6.568 vendor/golang.org/x/text/transform
#19 6.596 vendor/golang.org/x/text/unicode/bidi
#19 6.677 vendor/golang.org/x/text/secure/bidirule
#19 6.695 vendor/golang.org/x/text/unicode/norm
#19 6.910 vendor/golang.org/x/net/idna
#19 7.020 net/textproto
#19 7.066 vendor/golang.org/x/net/http/httpguts
#19 7.086 vendor/golang.org/x/net/http/httpproxy
#19 7.112 vendor/golang.org/x/net/http2/hpack
#19 7.172 mime
#19 7.267 mime/quotedprintable
#19 7.290 mime/multipart
#19 7.351 net/http/httptrace
#19 7.373 net/http/internal
#19 7.398 net/http/internal/ascii
#19 7.415 net/http
#19 9.156 github.com/gorilla/websocket
#19 9.308 golang.org/x/sys/unix
#19 9.888 github.com/mattn/go-isatty
#19 9.903 github.com/mattn/go-colorable
#19 9.914 github.com/rs/zerolog/internal/json
#19 9.984 github.com/rs/zerolog
#19 10.38 filippo.io/edwards25519/field
#19 10.41 filippo.io/edwards25519
#19 10.49 go.mau.fi/libsignal/logger
#19 10.51 golang.org/x/crypto/curve25519
#19 10.52 go.mau.fi/libsignal/ecc
#19 10.55 go.mau.fi/libsignal/cipher
#19 10.56 golang.org/x/crypto/hkdf
#19 10.57 go.mau.fi/libsignal/kdf
#19 10.58 go.mau.fi/libsignal/util/bytehelper
#19 10.59 go.mau.fi/libsignal/groups/ratchet
#19 10.60 go.mau.fi/libsignal/signalerror
#19 10.60 go.mau.fi/libsignal/groups/state/record
#19 10.63 go.mau.fi/libsignal/keys/identity
#19 10.64 go.mau.fi/libsignal/util/optional
#19 10.64 go.mau.fi/libsignal/protocol
#19 10.67 go.mau.fi/libsignal/groups/state/store
#19 10.68 go.mau.fi/libsignal/keys/message
#19 10.69 go.mau.fi/libsignal/keys/chain
#19 10.70 go.mau.fi/libsignal/keys/session
#19 10.71 go.mau.fi/libsignal/keys/root
#19 10.72 go.mau.fi/libsignal/util/errorhelper
#19 10.72 go.mau.fi/libsignal/state/record
#19 10.78 google.golang.org/protobuf/internal/detrand
#19 10.79 google.golang.org/protobuf/internal/errors
#19 10.81 google.golang.org/protobuf/encoding/protowire
#19 10.83 google.golang.org/protobuf/internal/pragma
#19 10.83 google.golang.org/protobuf/reflect/protoreflect
#19 10.94 google.golang.org/protobuf/internal/encoding/messageset
#19 10.96 google.golang.org/protobuf/internal/flags
#19 10.96 google.golang.org/protobuf/internal/genid
#19 10.98 google.golang.org/protobuf/internal/order
#19 11.00 google.golang.org/protobuf/internal/strs
#19 11.03 google.golang.org/protobuf/reflect/protoregistry
#19 11.09 google.golang.org/protobuf/runtime/protoiface
#19 11.11 google.golang.org/protobuf/proto
#19 11.23 google.golang.org/protobuf/internal/descfmt
#19 11.27 google.golang.org/protobuf/internal/descopts
#19 11.28 google.golang.org/protobuf/internal/editiondefaults
#19 11.28 google.golang.org/protobuf/internal/encoding/text
#19 11.38 google.golang.org/protobuf/internal/encoding/defval
#19 11.40 google.golang.org/protobuf/internal/filedesc
#19 11.66 google.golang.org/protobuf/internal/set
#19 11.66 google.golang.org/protobuf/encoding/prototext
#19 11.76 google.golang.org/protobuf/internal/encoding/tag
#19 11.79 google.golang.org/protobuf/internal/impl
#19 12.75 google.golang.org/protobuf/internal/filetype
#19 12.78 google.golang.org/protobuf/internal/version
#19 12.79 google.golang.org/protobuf/runtime/protoimpl
#19 12.80 go.mau.fi/libsignal/serialize
#19 12.89 go.mau.fi/libsignal/util/keyhelper
#19 12.90 go.mau.fi/libsignal/groups
#19 12.92 go.mau.fi/libsignal/keys/prekey
#19 12.93 go.mau.fi/libsignal/ratchet
#19 12.95 go.mau.fi/libsignal/state/store
#19 12.96 go.mau.fi/libsignal/util/medium
#19 12.97 go.mau.fi/libsignal/session
#19 13.01 go.mau.fi/util/random
#19 13.02 go.mau.fi/util/retryafter
#19 13.03 go.mau.fi/whatsmeow/util/hkdfutil
#19 13.04 go.mau.fi/whatsmeow/appstate/lthash
#19 13.04 go.mau.fi/whatsmeow/binary/token
#19 13.06 go.mau.fi/util/jsontime
#19 13.29 go.mau.fi/whatsmeow/proto/waAdv
#19 13.32 go.mau.fi/whatsmeow/proto/waCert
#19 13.34 go.mau.fi/whatsmeow/proto/waUserPassword
#19 13.37 go.mau.fi/whatsmeow/proto/waChatLockSettings
#19 13.39 go.mau.fi/whatsmeow/proto/waCommon
#19 13.42 go.mau.fi/whatsmeow/proto/waCompanionReg
#19 13.45 go.mau.fi/whatsmeow/proto/waDeviceCapabilities
#19 13.47 go.mau.fi/whatsmeow/proto/waMmsRetry
#19 13.49 go.mau.fi/whatsmeow/proto/waE2E
#19 14.26 go.mau.fi/whatsmeow/proto/waEphemeral
#19 14.27 go.mau.fi/whatsmeow/proto/waSyncAction
#19 14.45 go.mau.fi/whatsmeow/proto/waWeb
#19 14.60 go.mau.fi/whatsmeow/proto/waHistorySync
#19 14.71 go.mau.fi/whatsmeow/proto/armadilloutil
#19 14.72 go.mau.fi/whatsmeow/proto/waArmadilloXMA
#19 14.76 go.mau.fi/whatsmeow/proto/waArmadilloApplication
#19 14.87 go.mau.fi/whatsmeow/proto/waMediaTransport
#19 14.95 go.mau.fi/whatsmeow/proto/waConsumerApplication
#19 15.05 go.mau.fi/whatsmeow/proto/waMultiDevice
#19 15.08 go.mau.fi/whatsmeow/proto/waMsgApplication
#19 15.14 go.mau.fi/whatsmeow/proto/waMsgTransport
#19 15.18 go.mau.fi/whatsmeow/proto/waQuickPromotionSurfaces
#19 15.22 go.mau.fi/whatsmeow/proto/waServerSync
#19 15.26 go.mau.fi/whatsmeow/proto/waVnameCert
#19 15.30 go.mau.fi/whatsmeow/proto/waWa6
#19 15.37 go.mau.fi/whatsmeow/binary/proto
#19 15.43 go.mau.fi/whatsmeow/types
#19 15.49 go.mau.fi/whatsmeow/binary
#19 15.58 go.mau.fi/whatsmeow/util/keys
#19 15.59 go.mau.fi/whatsmeow/util/log
#19 15.61 go.mau.fi/whatsmeow/store
#19 15.67 go.mau.fi/whatsmeow/util/cbcutil
#19 15.68 go.mau.fi/whatsmeow/appstate
#19 15.75 go.mau.fi/whatsmeow/proto
#19 15.76 go.mau.fi/whatsmeow/util/gcmutil
#19 15.77 go.mau.fi/whatsmeow/socket
#19 15.81 go.mau.fi/whatsmeow/types/events
#19 15.88 golang.org/x/crypto/pbkdf2
#19 15.89 runtime/debug
#19 15.92 go.mau.fi/whatsmeow
#19 16.91 go.mau.fi/whatsmeow/store/sqlstore
#19 16.99 golang.org/x/image/riff
#19 17.01 image/color
#19 17.03 image
#19 17.14 golang.org/x/image/vp8
#19 17.21 golang.org/x/image/vp8l
#19 17.26 golang.org/x/image/webp
#19 17.28 image/internal/imageutil
#19 17.29 image/jpeg
#19 17.37 image/png
#19 29.42 git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp
#19 31.20
#19 31.20 --- Processing package: git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp ---
#19 31.20 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 31.20 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 31.20 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 31.20 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 31.20 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 31.23
#19 31.23 --- building package ---
#19 31.23 gopy build -output=generated -no-make=true /build/
#19 31.23 goimports -w whatsapp.go
#19 31.46 go build -mod=mod -buildmode=c-shared -o whatsapp_go.so .
#19 65.52 /venv/bin/python build.py
#19 65.62 CGO_CFLAGS="-I/usr/local/include/python3.11" -fPIC -Ofast
#19 65.62 CGO_LDFLAGS="-L/usr/local/lib" "-lpython3.11" -ldl -lm
#19 65.62 go build -mod=mod -buildmode=c-shared -o _whatsapp.cpython-311-x86_64-linux-gnu.so .
#19 DONE 97.2s
#20 [builder-wheel 1/9] RUN pip install pybindgen
#20 0.464 Requirement already satisfied: pybindgen in /venv/lib/python3.11/site-packages (0.22.1)
#20 0.612
#20 0.612 [notice] A new release of pip is available: 24.0 -> 24.2
#20 0.612 [notice] To update, run: pip install --upgrade pip
#20 DONE 0.6s
#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.345 Creating virtualenv slidge-whatsapp-XDF0t07c-py3.11 in /root/.cache/pypoetry/virtualenvs
#26 0.576 Preparing build environment with build-system requirements poetry-core, pybindgen
#26 1.577 Building slidge-whatsapp (0.0.0-dev+20240902_git54a4a63f8e)
#26 1.583 - Building sdist
#26 1.604 - Built slidge_whatsapp-0.0.0.dev0+20240902.git54a4a63f8e.tar.gz
#26 1.605 - Building wheel
#26 1.847 go build -v .
#26 1.954 git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp/slidge_whatsapp
#26 3.482
#26 3.482 --- Processing package: git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp/slidge_whatsapp ---
#26 3.484 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.484 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.484 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.485 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.485 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.511
#26 3.511 --- building package ---
#26 3.511 gopy build -output=generated -no-make=true .
#26 3.511 goimports -w whatsapp.go
#26 3.633 go build -mod=mod -buildmode=c-shared -o whatsapp_go.so .
#26 7.026 /venv/bin/python build.py
#26 7.122 CGO_CFLAGS="-I/usr/local/include/python3.11" -fPIC -Ofast
#26 7.122 CGO_LDFLAGS="-L/usr/local/lib" "-lpython3.11" -ldl -lm
#26 7.122 go build -mod=mod -buildmode=c-shared -o _whatsapp.cpython-311-x86_64-linux-gnu.so .
#26 11.93 - Built slidge_whatsapp-0.0.0.dev0+20240902.git54a4a63f8e-cp311-cp311-manylinux_2_36_x86_64.whl
#26 DONE 12.1s
#27 [builder-wheel 8/9] RUN ls -l ./dist
#27 0.070 total 8892
#27 0.070 -rw-r--r-- 1 root root 9061941 Sep 2 04:44 slidge_whatsapp-0.0.0.dev0+20240902.git54a4a63f8e-cp311-cp311-manylinux_2_36_x86_64.whl
#27 0.070 -rw-r--r-- 1 root root 37174 Sep 2 04:44 slidge_whatsapp-0.0.0.dev0+20240902.git54a4a63f8e.tar.gz
#27 DONE 0.1s
#28 [builder-wheel 9/9] RUN python --version
#28 0.051 Python 3.11.9
#28 DONE 0.1s
#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+20240902.git54a4a63f8e.tar.gz dist/
+ mv dist-mess/slidge_whatsapp-0.0.0.dev0+20240902.git54a4a63f8e-cp311-cp311-manylinux_2_36_x86_64.whl dist/
+ tar cvf /home/build/packages.tar dist/slidge_whatsapp-0.0.0.dev0+20240902.git54a4a63f8e-cp311-cp311-manylinux_2_36_x86_64.whl dist/slidge_whatsapp-0.0.0.dev0+20240902.git54a4a63f8e.tar.gz
dist/slidge_whatsapp-0.0.0.dev0+20240902.git54a4a63f8e-cp311-cp311-manylinux_2_36_x86_64.whl
dist/slidge_whatsapp-0.0.0.dev0+20240902.git54a4a63f8e.tar.gz
|