dofigen 2.8.0

A Dockerfile generator using a simplified description in YAML or JSON format create
Documentation
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
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
use crate::deserialize::*;
#[cfg(feature = "json_schema")]
use crate::json_schema::optional_string_or_number_schema;
#[cfg(feature = "json_schema")]
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use std::{collections::HashMap, path::PathBuf};
use struct_patch::Patch;
use url::Url;

/** Represents the Dockerfile main stage */
#[derive(Serialize, Debug, Clone, PartialEq, Default, Patch)]
#[serde(rename_all = "camelCase")]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    // attribute(serde(deny_unknown_fields)),
    attribute(serde(default, rename_all = "camelCase"))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(
            title = "Dofigen",
            rename = "Dofigen",
            extend("$id" = "https://json.schemastore.org/dofigen.json"),
            description = "Dofigen is a Dockerfile generator using a simplified description in YAML or JSON format"
        ))
    )
)]
pub struct Dofigen {
    /// The context of the Docker build
    /// This is used to generate a .dockerignore file
    #[patch(name = "VecPatch<String>")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub context: Vec<String>,

    /// The elements to ignore from the build context
    /// This is used to generate a .dockerignore file
    #[patch(name = "VecPatch<String>")]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "ignores"))))]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub ignore: Vec<String>,

    /// The global build args of the Dockerfile
    /// See: https://docs.docker.com/build/building/variables/#scoping
    #[patch(name = "HashMapPatch<String, String>")]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "globalArgs"))))]
    #[serde(skip_serializing_if = "HashMap::is_empty")]
    pub global_arg: HashMap<String, String>,

    /// The builder stages of the Dockerfile
    #[patch(name = "HashMapDeepPatch<String, StagePatch>")]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "builder"))))]
    #[serde(skip_serializing_if = "HashMap::is_empty")]
    // TODO: deprecated. Replace builders by builder
    pub builders: HashMap<String, Stage>,

    /// The runtime stage of the Dockerfile
    #[patch(name = "StagePatch", attribute(serde(flatten)))]
    #[serde(flatten)]
    pub stage: Stage,

    /// The entrypoint of the Dockerfile
    /// See https://docs.docker.com/reference/dockerfile/#entrypoint
    #[patch(name = "VecPatch<String>")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub entrypoint: Vec<String>,

    /// The default command of the Dockerfile
    /// See https://docs.docker.com/reference/dockerfile/#cmd
    #[patch(name = "VecPatch<String>")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub cmd: Vec<String>,

    /// Create volume mounts
    /// See https://docs.docker.com/reference/dockerfile/#volume
    #[patch(name = "VecPatch<String>")]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "volumes"))))]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub volume: Vec<String>,

    /// The ports exposed by the Dockerfile
    /// See https://docs.docker.com/reference/dockerfile/#expose
    #[cfg_attr(
        feature = "permissive",
        patch(name = "VecDeepPatch<Port, ParsableStruct<PortPatch>>")
    )]
    #[cfg_attr(
        not(feature = "permissive"),
        patch(name = "VecDeepPatch<Port, PortPatch>")
    )]
    #[cfg_attr(
        not(feature = "strict"),
        patch(attribute(serde(alias = "port", alias = "ports")))
    )]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub expose: Vec<Port>,

    /// The healthcheck of the Dockerfile
    /// See https://docs.docker.com/reference/dockerfile/#healthcheck
    #[patch(name = "Option<HealthcheckPatch>")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub healthcheck: Option<Healthcheck>,
}

/// Represents a Dockerfile stage
#[derive(Serialize, Debug, Clone, PartialEq, Default, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    // attribute(serde(deny_unknown_fields)),
    attribute(serde(default)),
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "Stage", rename = "Stage"))
    )
)]
pub struct Stage {
    /// The base of the stage
    /// See https://docs.docker.com/reference/dockerfile/#from
    #[serde(flatten, skip_serializing_if = "FromContext::is_empty")]
    #[patch(name = "FromContextPatch", attribute(serde(flatten, default)))]
    pub from: FromContext,

    /// Add metadata to an image
    /// See https://docs.docker.com/reference/dockerfile/#label
    #[cfg_attr(not(feature = "strict"), patch(name = "NestedMap<String>"))]
    #[cfg_attr(feature = "strict", patch(name = "HashMapPatch<String, String>"))]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "labels"))))]
    #[serde(skip_serializing_if = "HashMap::is_empty")]
    pub label: HashMap<String, String>,

    /// The user and group of the stage
    /// See https://docs.docker.com/reference/dockerfile/#user
    #[cfg_attr(
        feature = "permissive",
        patch(name = "Option<ParsableStruct<UserPatch>>")
    )]
    #[cfg_attr(not(feature = "permissive"), patch(name = "Option<UserPatch>"))]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub user: Option<User>,

    /// The working directory of the stage
    /// See https://docs.docker.com/reference/dockerfile/#workdir
    #[serde(skip_serializing_if = "Option::is_none")]
    pub workdir: Option<String>,

    /// The build args that can be used in the stage
    /// See https://docs.docker.com/reference/dockerfile/#arg
    #[patch(name = "HashMapPatch<String, String>")]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "args"))))]
    #[serde(skip_serializing_if = "HashMap::is_empty")]
    pub arg: HashMap<String, String>,

    /// The environment variables of the stage
    /// See https://docs.docker.com/reference/dockerfile/#env
    #[patch(name = "HashMapPatch<String, String>")]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "envs"))))]
    #[serde(skip_serializing_if = "HashMap::is_empty")]
    pub env: HashMap<String, String>,

    /// The copy instructions of the stage
    /// See https://docs.docker.com/reference/dockerfile/#copy and https://docs.docker.com/reference/dockerfile/#add
    #[cfg_attr(
        not(feature = "strict"),
        patch(attribute(serde(
            alias = "add",
            alias = "adds",
            alias = "artifact",
            alias = "artifacts"
        )))
    )]
    #[cfg_attr(
        feature = "permissive",
        patch(name = "VecDeepPatch<CopyResource, ParsableStruct<CopyResourcePatch>>")
    )]
    #[cfg_attr(
        not(feature = "permissive"),
        patch(name = "VecDeepPatch<CopyResource, CopyResourcePatch>")
    )]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub copy: Vec<CopyResource>,

    /// The run instructions of the stage as root user
    #[patch(name = "Option<RunPatch>")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub root: Option<Run>,

    /// The run instructions of the stage
    /// See https://docs.docker.com/reference/dockerfile/#run
    #[patch(name = "RunPatch", attribute(serde(flatten)))]
    #[serde(flatten)]
    pub run: Run,
}

/// Represents a run command
#[derive(Serialize, Debug, Clone, PartialEq, Default, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    // attribute(serde(deny_unknown_fields)),
    attribute(serde(default)),
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "Run", rename = "Run"))
    )
)]
pub struct Run {
    /// The commands to run
    #[patch(name = "VecPatch<String>")]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "script"))))]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub run: Vec<String>,

    /// The shell to use for the RUN command
    /// See https://docs.docker.com/reference/dockerfile/#shell
    #[patch(name = "VecPatch<String>")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub shell: Vec<String>,

    /// The cache definitions during the run
    /// See https://docs.docker.com/reference/dockerfile/#run---mounttypecache
    #[cfg_attr(
        feature = "permissive",
        patch(name = "VecDeepPatch<Cache, ParsableStruct<CachePatch>>")
    )]
    #[cfg_attr(
        not(feature = "permissive"),
        patch(name = "VecDeepPatch<Cache, CachePatch>")
    )]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "caches"))))]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub cache: Vec<Cache>,

    /// The file system bindings during the run
    /// This is used to mount a file or directory from the host into the container only during the run and it's faster than a copy
    /// See https://docs.docker.com/reference/dockerfile/#run---mounttypebind
    #[cfg_attr(
        feature = "permissive",
        patch(name = "VecDeepPatch<Bind, ParsableStruct<BindPatch>>")
    )]
    #[cfg_attr(
        not(feature = "permissive"),
        patch(name = "VecDeepPatch<Bind, BindPatch>")
    )]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "binds"))))]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub bind: Vec<Bind>,

    /// This mount type allows [mounting tmpfs](https://docs.docker.com/reference/dockerfile/#run---mounttypetmpfs) in the build container.
    #[cfg_attr(
        feature = "permissive",
        patch(name = "VecDeepPatch<TmpFs, ParsableStruct<TmpFsPatch>>")
    )]
    #[cfg_attr(
        not(feature = "permissive"),
        patch(name = "VecDeepPatch<TmpFs, TmpFsPatch>")
    )]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub tmpfs: Vec<TmpFs>,

    /// This allows the build container to access secret values, such as tokens or private keys, without baking them into the image.
    /// By default, the secret is mounted as a file. You can also mount the secret as an environment variable by setting the env option.
    /// See https://docs.docker.com/reference/dockerfile/#run---mounttypesecret
    #[patch(name = "VecDeepPatch<Secret, SecretPatch>")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "secrets"))))]
    pub secret: Vec<Secret>,

    /// This allows the build container to access SSH keys via SSH agents, with support for passphrases.
    /// See https://docs.docker.com/reference/dockerfile/#run---mounttypessh
    #[patch(name = "VecDeepPatch<Ssh, SshPatch>")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub ssh: Vec<Ssh>,

    /// This allows control over which networking environment the command is run in.
    /// See https://docs.docker.com/reference/dockerfile/#run---network
    #[serde(skip_serializing_if = "Option::is_none")]
    pub network: Option<Network>,

    /// The default security mode is sandbox. With `security: insecure`, the builder runs the command without sandbox in insecure mode, which allows to run flows requiring elevated privileges (e.g. containerd).
    /// See https://docs.docker.com/reference/dockerfile/#run---security
    #[serde(skip_serializing_if = "Option::is_none")]
    pub security: Option<Security>,
}

/// Represents a cache definition during a run
/// See https://docs.docker.com/reference/dockerfile/#run---mounttypecache
#[derive(Serialize, Debug, Clone, PartialEq, Default, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "Cache", rename = "Cache"))
    )
)]
pub struct Cache {
    /// The id of the cache
    /// This is used to share the cache between different stages
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,

    /// The target path of the cache
    #[cfg_attr(
        not(feature = "strict"),
        patch(attribute(serde(alias = "dst", alias = "destination")))
    )]
    pub target: String,

    /// Defines if the cache is readonly
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "ro"))))]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub readonly: Option<bool>,

    /// The sharing strategy of the cache
    #[serde(skip_serializing_if = "Option::is_none")]
    pub sharing: Option<CacheSharing>,

    /// Build stage, context, or image name to use as a base of the cache mount. Defaults to empty directory.
    #[serde(flatten, skip_serializing_if = "FromContext::is_empty")]
    #[patch(name = "FromContextPatch", attribute(serde(flatten)))]
    pub from: FromContext,

    /// Subpath in the from to mount. Defaults to the root of the from
    #[serde(skip_serializing_if = "Option::is_none")]
    pub source: Option<String>,

    /// The permissions of the cache
    #[cfg_attr(
        feature = "permissive",
        patch(attribute(serde(
            deserialize_with = "deserialize_from_optional_string_or_number",
            default
        )))
    )]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "json_schema",
        patch(attribute(schemars(schema_with = "optional_string_or_number_schema")))
    )]
    pub chmod: Option<String>,

    /// The user and group that own the cache
    #[patch(name = "Option<UserPatch>")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub chown: Option<User>,
}

/// Represents file system binding during a run
/// See https://docs.docker.com/reference/dockerfile/#run---mounttypebind
#[derive(Serialize, Debug, Clone, PartialEq, Default, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "Bind", rename = "Bind"))
    )
)]
pub struct Bind {
    /// The target path of the bind
    pub target: String,

    /// The base of the bind
    #[serde(flatten, skip_serializing_if = "FromContext::is_empty")]
    #[patch(name = "FromContextPatch", attribute(serde(flatten)))]
    pub from: FromContext,

    /// Source path in the from. Defaults to the root of the from
    #[serde(skip_serializing_if = "Option::is_none")]
    pub source: Option<String>,

    /// Defines if the bind is read and write
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "rw"))))]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub readwrite: Option<bool>,
}

/// This mount type allows [mounting tmpfs](https://docs.docker.com/reference/dockerfile/#run---mounttypetmpfs) in the build container.
/// See https://docs.docker.com/reference/dockerfile/#run---mounttypetmpfs
#[derive(Serialize, Debug, Clone, PartialEq, Default, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "TmpFs", rename = "TmpFs"))
    )
)]
pub struct TmpFs {
    /// Mount path of the tmpfs
    pub target: String,

    /// Specify an upper limit on the size of the filesystem.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub size: Option<String>,
}

/// This mount type allows the build container to access secret values, such as tokens or private keys, without baking them into the image.
/// By default, the secret is mounted as a file. You can also mount the secret as an environment variable by setting the env option.
/// See https://docs.docker.com/reference/dockerfile/#run---mounttypesecret
#[derive(Serialize, Debug, Clone, PartialEq, Default, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "Secret", rename = "Secret"))
    )
)]
pub struct Secret {
    /// ID of the secret. Defaults to basename of the target path.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,

    /// Mount the secret to the specified path. Defaults to /run/secrets/ + id if unset and if env is also unset.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub target: Option<String>,

    /// Mount the secret to an environment variable instead of a file, or both.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub env: Option<String>,

    /// If set to true, the instruction errors out when the secret is unavailable. Defaults to false.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub required: Option<bool>,

    /// File mode for secret file in octal. Default `0400`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub mode: Option<String>,

    /// User ID for secret file. Default 0.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub uid: Option<u16>,

    /// Group ID for secret file. Default 0.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub gid: Option<u16>,
}

/// This mount type allows the build container to access SSH keys via SSH agents, with support for passphrases.
/// See https://docs.docker.com/reference/dockerfile/#run---mounttypessh
#[derive(Serialize, Debug, Clone, PartialEq, Default, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "Ssh", rename = "Ssh"))
    )
)]
pub struct Ssh {
    /// ID of SSH agent socket or key. Defaults to "default".
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,

    /// SSH agent socket path. Defaults to /run/buildkit/ssh_agent.${N}.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub target: Option<String>,

    /// If set to true, the instruction errors out when the key is unavailable. Defaults to false.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub required: Option<bool>,

    /// File mode for socket in octal. Default `0600`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub mode: Option<String>,

    /// User ID for socket. Default 0.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub uid: Option<u16>,

    /// Group ID for socket. Default 0.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub gid: Option<u16>,
}

/// Represents the Dockerfile healthcheck instruction
/// See https://docs.docker.com/reference/dockerfile/#healthcheck
#[derive(Serialize, Debug, Clone, PartialEq, Default, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(deny_unknown_fields, default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "Healthcheck", rename = "Healthcheck"))
    )
)]
pub struct Healthcheck {
    /// The test to run
    pub cmd: String,

    /// The interval between two tests
    #[serde(skip_serializing_if = "Option::is_none")]
    pub interval: Option<String>,

    /// The timeout of the test
    #[serde(skip_serializing_if = "Option::is_none")]
    pub timeout: Option<String>,

    /// The start period of the test
    #[serde(skip_serializing_if = "Option::is_none")]
    pub start: Option<String>,

    /// The number of retries
    #[serde(skip_serializing_if = "Option::is_none")]
    pub retries: Option<u16>,
}

/// Represents a Docker image name
#[derive(Serialize, Debug, Clone, PartialEq, Default, Patch, Hash, Eq, PartialOrd)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(deny_unknown_fields, default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "ImageName", rename = "ImageName"))
    )
)]
pub struct ImageName {
    /// The host of the image registry
    #[serde(skip_serializing_if = "Option::is_none")]
    pub host: Option<String>,

    /// The port of the image registry
    #[serde(skip_serializing_if = "Option::is_none")]
    pub port: Option<u16>,

    /// The path of the image repository
    pub path: String,

    /// The version of the image
    #[serde(flatten, skip_serializing_if = "Option::is_none")]
    #[patch(attribute(serde(flatten)))]
    pub version: Option<ImageVersion>,

    /// The optional platform option can be used to specify the platform of the image in case FROM references a multi-platform image.
    /// For example, linux/amd64, linux/arm64, or windows/amd64.
    /// By default, the target platform of the build request is used. Global build arguments can be used in the value of this flag, for example automatic platform ARGs allow you to force a stage to native build platform (platform: $BUILDPLATFORM), and use it to cross-compile to the target platform inside the stage.
    /// See https://docs.docker.com/reference/dockerfile/#from
    #[serde(skip_serializing_if = "Option::is_none")]
    pub platform: Option<String>,
}

/// Represents the COPY instruction in a Dockerfile.
/// See https://docs.docker.com/reference/dockerfile/#copy
#[derive(Debug, Clone, PartialEq, Default, Serialize, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(deny_unknown_fields, default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "Copy", rename = "Copy"))
    )
)]
pub struct Copy {
    /// The origin of the copy
    /// See https://docs.docker.com/reference/dockerfile/#copy---from
    #[serde(flatten, skip_serializing_if = "FromContext::is_empty")]
    #[patch(name = "FromContextPatch", attribute(serde(flatten)))]
    pub from: FromContext,

    /// The paths to copy
    #[patch(name = "VecPatch<String>")]
    #[cfg_attr(
        not(feature = "strict"),
        patch(attribute(serde(alias = "path", alias = "source")))
    )]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub paths: Vec<String>,

    /// The options of the copy
    #[serde(flatten)]
    #[patch(name = "CopyOptionsPatch", attribute(serde(flatten)))]
    pub options: CopyOptions,

    /// See https://docs.docker.com/reference/dockerfile/#copy---exclude
    #[patch(name = "VecPatch<String>")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub exclude: Vec<String>,

    /// See https://docs.docker.com/reference/dockerfile/#copy---parents
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parents: Option<bool>,
}

/// Represents the COPY instruction in a Dockerfile from file content.
/// See https://docs.docker.com/reference/dockerfile/#example-creating-inline-files
#[derive(Debug, Clone, PartialEq, Default, Serialize, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(deny_unknown_fields, default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "CopyContent", rename = "CopyContent"))
    )
)]
pub struct CopyContent {
    /// Content of the file to copy
    pub content: String,

    /// If true, replace variables in the content at build time. Default is true.
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "subst"))))]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub substitute: Option<bool>,

    /// The options of the copy
    #[serde(flatten)]
    #[patch(name = "CopyOptionsPatch", attribute(serde(flatten)))]
    pub options: CopyOptions,
}

/// Represents the ADD instruction in a Dockerfile specific for Git repo.
/// See https://docs.docker.com/reference/dockerfile/#adding-private-git-repositories
#[derive(Debug, Clone, PartialEq, Default, Serialize, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(deny_unknown_fields, default, rename_all = "camelCase"))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "AddGitRepo", rename = "AddGitRepo"))
    )
)]
pub struct AddGitRepo {
    /// The URL of the Git repository
    pub repo: String,

    /// The options of the copy
    #[serde(flatten)]
    #[patch(name = "CopyOptionsPatch", attribute(serde(flatten)))]
    pub options: CopyOptions,

    /// See https://docs.docker.com/reference/dockerfile/#copy---exclude
    #[patch(name = "VecPatch<String>")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub exclude: Vec<String>,

    /// Keep the git directory
    /// See https://docs.docker.com/reference/dockerfile/#add---keep-git-dir
    #[serde(skip_serializing_if = "Option::is_none")]
    pub keep_git_dir: Option<bool>,

    /// The checksum of the files
    /// See https://docs.docker.com/reference/dockerfile/#add---checksum
    #[serde(skip_serializing_if = "Option::is_none")]
    pub checksum: Option<String>,
}

/// Represents the ADD instruction in a Dockerfile file from URLs or uncompress an archive.
#[derive(Debug, Clone, PartialEq, Default, Serialize, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(deny_unknown_fields, default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "Add", rename = "Add"))
    )
)]
pub struct Add {
    /// The files to add
    #[patch(name = "VecPatch<Resource>")]
    #[cfg_attr(not(feature = "strict"), patch(attribute(serde(alias = "file"))))]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub files: Vec<Resource>,

    /// The options of the copy
    #[serde(flatten)]
    #[patch(name = "CopyOptionsPatch", attribute(serde(flatten)))]
    pub options: CopyOptions,

    /// The checksum of the files
    /// See https://docs.docker.com/reference/dockerfile/#add---checksum
    #[serde(skip_serializing_if = "Option::is_none")]
    pub checksum: Option<String>,

    /// The unpack flag controls whether or not to automatically unpack tar archives (including compressed formats like gzip or bzip2) when adding them to the image.
    /// Local tar archives are unpacked by default, whereas remote tar archives (where src is a URL) are downloaded without unpacking.
    /// See https://docs.docker.com/reference/dockerfile/#add---unpack
    #[serde(skip_serializing_if = "Option::is_none")]
    pub unpack: Option<bool>,
}

/// Represents the options of a COPY/ADD instructions
#[derive(Debug, Clone, PartialEq, Default, Serialize, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(deny_unknown_fields, default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "CopyOptions", rename = "CopyOptions"))
    )
)]
pub struct CopyOptions {
    /// The target path of the copied files
    #[cfg_attr(
        not(feature = "strict"),
        patch(attribute(serde(alias = "destination")))
    )]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub target: Option<String>,

    /// The user and group that own the copied files
    /// See https://docs.docker.com/reference/dockerfile/#copy---chown---chmod
    #[patch(name = "Option<UserPatch>")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub chown: Option<User>,

    /// The permissions of the copied files
    /// See https://docs.docker.com/reference/dockerfile/#copy---chown---chmod
    #[cfg_attr(
        feature = "permissive",
        patch(attribute(serde(
            deserialize_with = "deserialize_from_optional_string_or_number",
            default
        )))
    )]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "json_schema",
        patch(attribute(schemars(schema_with = "optional_string_or_number_schema")))
    )]
    pub chmod: Option<String>,

    /// Use of the link flag
    /// See https://docs.docker.com/reference/dockerfile/#copy---link
    #[serde(skip_serializing_if = "Option::is_none")]
    pub link: Option<bool>,
}

/// Represents user and group definition
#[derive(Debug, Clone, PartialEq, Default, Serialize, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(deny_unknown_fields, default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "User", rename = "User"))
    )
)]
pub struct User {
    /// The user name or ID
    /// The ID is preferred
    pub user: String,

    /// The group name or ID
    /// The ID is preferred
    #[serde(skip_serializing_if = "Option::is_none")]
    pub group: Option<String>,
}

/// Represents a port definition
#[derive(Debug, Clone, PartialEq, Default, Serialize, Patch)]
#[patch(
    attribute(derive(Deserialize, Debug, Clone, PartialEq, Default)),
    attribute(serde(deny_unknown_fields, default))
)]
#[cfg_attr(
    feature = "json_schema",
    patch(
        attribute(derive(JsonSchema)),
        attribute(schemars(title = "Port", rename = "Port"))
    )
)]
pub struct Port {
    /// The port number
    pub port: u16,

    /// The protocol of the port
    #[serde(skip_serializing_if = "Option::is_none")]
    pub protocol: Option<PortProtocol>,
}

///////////////// Enums //////////////////

/// Represents a Docker image version
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Hash, Eq, PartialOrd)]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "json_schema", derive(JsonSchema))]
pub enum ImageVersion {
    Tag(String),
    Digest(String),
}

/// Represents a copy origin
#[derive(Serialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
pub enum FromContext {
    FromImage(ImageName),
    FromBuilder(String),
    FromContext(Option<String>),
}

#[derive(Serialize, Debug, Clone, PartialEq)]
#[serde(untagged)]
pub enum CopyResource {
    Copy(Copy),
    Content(CopyContent),
    AddGitRepo(AddGitRepo),
    Add(Add),
}

/// Represents a cache sharing strategy
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "json_schema", derive(JsonSchema))]
pub enum CacheSharing {
    Shared,
    Private,
    Locked,
}

/// Represents a port protocol
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "json_schema", derive(JsonSchema))]
pub enum PortProtocol {
    Tcp,
    Udp,
}

/// Represents a resource
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Hash, Eq, PartialOrd)]
#[serde(untagged)]
#[cfg_attr(feature = "json_schema", derive(JsonSchema))]
pub enum Resource {
    Url(Url),
    File(PathBuf),
}

/// Represents a network configuration
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "json_schema", derive(JsonSchema))]
pub enum Network {
    /// Run in the default network.
    Default,
    /// Run with no network access.
    None,
    /// Run in the host's network environment.
    Host,
}

/// Represents a security mode
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "json_schema", derive(JsonSchema))]
pub enum Security {
    Sandbox,
    Insecure,
}

///////////////// Enum Patches //////////////////

#[derive(Debug, Clone, PartialEq, Deserialize)]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "json_schema", derive(JsonSchema))]
pub enum FromContextPatch {
    #[cfg(not(feature = "permissive"))]
    #[cfg_attr(not(feature = "strict"), serde(alias = "image"))]
    FromImage(ImageNamePatch),

    #[cfg(feature = "permissive")]
    #[cfg_attr(not(feature = "strict"), serde(alias = "image"))]
    FromImage(ParsableStruct<ImageNamePatch>),

    #[cfg_attr(not(feature = "strict"), serde(alias = "builder"))]
    FromBuilder(String),

    #[cfg_attr(not(feature = "strict"), serde(alias = "from"))]
    FromContext(Option<String>),
}

#[derive(Debug, Clone, PartialEq, Deserialize)]
#[serde(untagged)]
#[cfg_attr(feature = "json_schema", derive(JsonSchema))]
pub enum CopyResourcePatch {
    Copy(CopyPatch),
    Content(CopyContentPatch),
    AddGitRepo(AddGitRepoPatch),
    Add(AddPatch),
    Unknown(UnknownPatch),
}

#[derive(Deserialize, Debug, Clone, PartialEq, Default)]
#[cfg_attr(feature = "json_schema", derive(JsonSchema))]
pub struct UnknownPatch {
    #[serde(flatten)]
    pub options: Option<CopyOptionsPatch>,
    pub exclude: Option<VecPatch<String>>,
}

///////////////// Tests //////////////////

#[cfg(test)]
mod test {
    use super::*;
    use pretty_assertions_sorted::assert_eq_sorted;

    mod deserialize {
        use super::*;

        mod dofigen {
            use super::*;

            #[test]
            fn empty() {
                let data = r#""#;

                let dofigen: DofigenPatch = serde_yaml::from_str(data).unwrap();
                let dofigen: Dofigen = dofigen.into();

                assert_eq_sorted!(dofigen, Dofigen::default());
            }

            #[test]
            fn from() {
                let data = r#"
                fromImage:
                  path: ubuntu
                "#;

                let dofigen: DofigenPatch = serde_yaml::from_str(data).unwrap();
                let dofigen: Dofigen = dofigen.into();

                assert_eq_sorted!(
                    dofigen,
                    Dofigen {
                        stage: Stage {
                            from: FromContext::FromImage(ImageName {
                                path: "ubuntu".into(),
                                ..Default::default()
                            }),
                            ..Default::default()
                        },
                        ..Default::default()
                    }
                );
            }

            #[ignore = "Not managed yet by serde because of multilevel flatten: https://serde.rs/field-attrs.html#flatten"]
            #[test]
            fn duplicate_from() {
                let data = r#"
                from:
                    path: ubuntu
                from:
                    path: alpine
                "#;

                let dofigen: serde_yaml::Result<DofigenPatch> = serde_yaml::from_str(data);

                println!("{:?}", dofigen);

                assert!(dofigen.is_err());
            }

            #[ignore = "Not managed yet by serde because of multilevel flatten: https://serde.rs/field-attrs.html#flatten"]
            #[test]
            fn duplicate_from_and_alias() {
                let data = r#"
                from:
                  path: ubuntu
                image:
                  path: alpine
                "#;

                let dofigen: serde_yaml::Result<DofigenPatch> = serde_yaml::from_str(data);

                println!("{:?}", dofigen);

                assert!(dofigen.is_err());
            }

            #[test]
            fn global_arg() {
                let data = r#"
                globalArg:
                  IMAGE: ubuntu
                fromContext: ${IMAGE}
                "#;

                let dofigen: DofigenPatch = serde_yaml::from_str(data).unwrap();
                let dofigen: Dofigen = dofigen.into();

                assert_eq_sorted!(
                    dofigen,
                    Dofigen {
                        global_arg: HashMap::from([("IMAGE".into(), "ubuntu".into())]),
                        stage: Stage {
                            from: FromContext::FromContext(Some("${IMAGE}".into())).into(),
                            ..Default::default()
                        },
                        ..Default::default()
                    }
                );
            }
        }

        mod stage {
            use super::*;

            #[test]
            fn empty() {
                let data = r#""#;

                let stage: StagePatch = serde_yaml::from_str(data).unwrap();
                let stage: Stage = stage.into();

                assert_eq_sorted!(stage, Stage::default());
            }

            #[test]
            fn from() {
                let data = r#"
                fromImage:
                  path: ubuntu
                "#;

                let stage: StagePatch = serde_yaml::from_str(data).unwrap();
                let stage: Stage = stage.into();

                assert_eq_sorted!(
                    stage,
                    Stage {
                        from: FromContext::FromImage(ImageName {
                            path: "ubuntu".into(),
                            ..Default::default()
                        })
                        .into(),
                        ..Default::default()
                    }
                );
            }

            #[ignore = "Not managed yet by serde because of multilevel flatten: https://serde.rs/field-attrs.html#flatten"]
            #[test]
            fn duplicate_from() {
                let data = r#"
                fromImage:
                    path: ubuntu
                fromImage:
                    path: alpine
                "#;

                let stage: serde_yaml::Result<StagePatch> = serde_yaml::from_str(data);

                assert!(stage.is_err());
            }

            #[ignore = "Not managed yet by serde because of multilevel flatten: https://serde.rs/field-attrs.html#flatten"]
            #[test]
            fn duplicate_from_and_alias() {
                let data = r#"
                fromImage:
                  path: ubuntu
                image:
                  path: alpine
                "#;

                let stage: serde_yaml::Result<StagePatch> = serde_yaml::from_str(data);

                assert!(stage.is_err());
            }

            #[test]
            fn label() {
                #[cfg(not(feature = "strict"))]
                let data = r#"
                label:
                  io.dofigen:
                    test: test
                "#;
                #[cfg(feature = "strict")]
                let data = r#"
                label:
                  io.dofigen.test: test
                "#;

                let stage: StagePatch = serde_yaml::from_str(data).unwrap();
                let stage: Stage = stage.into();

                assert_eq_sorted!(
                    stage,
                    Stage {
                        label: HashMap::from([("io.dofigen.test".into(), "test".into())]),
                        ..Default::default()
                    }
                );
            }
        }

        mod user {
            use super::*;

            #[test]
            fn name_and_group() {
                let json_data = r#"{
    "user": "test",
    "group": "test"
}"#;

                let user: UserPatch = serde_yaml::from_str(json_data).unwrap();
                let user: User = user.into();

                assert_eq_sorted!(
                    user,
                    User {
                        user: "test".into(),
                        group: Some("test".into())
                    }
                );
            }
        }

        mod copy_resource {

            use super::*;

            #[test]
            fn copy() {
                let json_data = r#"{
    "paths": ["file1.txt", "file2.txt"],
    "target": "destination/",
    "chown": {
        "user": "root",
        "group": "root"
    },
    "chmod": "755",
    "link": true,
    "fromImage": {"path": "my-image"}
}"#;

                let copy_resource: CopyResourcePatch = serde_yaml::from_str(json_data).unwrap();
                let copy_resource: CopyResource = copy_resource.into();

                assert_eq_sorted!(
                    copy_resource,
                    CopyResource::Copy(Copy {
                        paths: vec!["file1.txt".into(), "file2.txt".into()].into(),
                        options: CopyOptions {
                            target: Some("destination/".into()),
                            chown: Some(User {
                                user: "root".into(),
                                group: Some("root".into())
                            }),
                            chmod: Some("755".into()),
                            link: Some(true),
                        },
                        from: FromContext::FromImage(ImageName {
                            path: "my-image".into(),
                            ..Default::default()
                        }),
                        exclude: vec![].into(),
                        parents: None,
                    })
                );
            }

            #[test]
            fn copy_from_yaml() {
                let yaml_data = r#"
paths: 
  - file1.txt
  - file2.txt
target: destination/
chown:
  user: root
  group: root
chmod: "755"
link: true
fromImage:
  path: my-image
"#;

                let copy_resource: CopyResourcePatch = serde_yaml::from_str(yaml_data).unwrap();
                let copy_resource: CopyResource = copy_resource.into();

                assert_eq_sorted!(
                    copy_resource,
                    CopyResource::Copy(Copy {
                        paths: vec!["file1.txt".into(), "file2.txt".into()].into(),
                        options: CopyOptions {
                            target: Some("destination/".into()),
                            chown: Some(User {
                                user: "root".into(),
                                group: Some("root".into())
                            }),
                            chmod: Some("755".into()),
                            link: Some(true),
                        },
                        from: FromContext::FromImage(ImageName {
                            path: "my-image".into(),
                            ..Default::default()
                        }),
                        exclude: vec![].into(),
                        parents: None,
                    })
                );
            }

            #[test]
            fn copy_simple() {
                let json_data = r#"{
    "paths": ["file1.txt"]
}"#;

                let copy_resource: CopyResourcePatch = serde_yaml::from_str(json_data).unwrap();

                assert_eq_sorted!(
                    copy_resource,
                    CopyResourcePatch::Copy(CopyPatch {
                        paths: Some(vec!["file1.txt".into()].into_patch()),
                        options: Some(CopyOptionsPatch::default()),
                        ..Default::default()
                    })
                );

                let copy_resource: CopyResource = copy_resource.into();

                assert_eq_sorted!(
                    copy_resource,
                    CopyResource::Copy(Copy {
                        paths: vec!["file1.txt".into()].into(),
                        options: CopyOptions::default(),
                        ..Default::default()
                    })
                );
            }

            #[cfg(feature = "permissive")]
            #[test]
            fn copy_chmod_int() {
                let json_data = r#"{
    "paths": ["file1.txt"],
    "chmod": 755
}"#;

                let copy_resource: CopyPatch = serde_yaml::from_str(json_data).unwrap();

                assert_eq_sorted!(
                    copy_resource,
                    CopyPatch {
                        paths: Some(vec!["file1.txt".into()].into_patch()),
                        options: Some(CopyOptionsPatch {
                            chmod: Some(Some("755".into())),
                            ..Default::default()
                        }),
                        ..Default::default()
                    }
                );
            }

            #[cfg(feature = "permissive")]
            #[test]
            fn deserialize_copy_from_str() {
                let json_data = "file1.txt destination/";

                let copy_resource: ParsableStruct<CopyResourcePatch> =
                    serde_yaml::from_str(json_data).unwrap();
                let copy_resource: CopyResource = copy_resource.into();

                assert_eq_sorted!(
                    copy_resource,
                    CopyResource::Copy(Copy {
                        paths: vec!["file1.txt".into()].into(),
                        options: CopyOptions {
                            target: Some("destination/".into()),
                            ..Default::default()
                        },
                        ..Default::default()
                    })
                );
            }

            #[test]
            fn copy_with_chown_regression() {
                let yaml = r#"
fromContext: get-composer
paths:
  - "/usr/bin/composer"
target: "/bin/"
chown:
  user: test
link: true
"#;

                let copy_resource: CopyResourcePatch = serde_yaml::from_str(yaml).unwrap();

                assert_eq_sorted!(
                    copy_resource,
                    CopyResourcePatch::Copy(CopyPatch {
                        from: Some(FromContextPatch::FromContext(Some("get-composer".into()))),
                        paths: Some(VecPatch {
                            commands: vec![VecPatchCommand::ReplaceAll(
                                vec!["/usr/bin/composer".to_string()].into()
                            )]
                        }),
                        options: Some(CopyOptionsPatch {
                            target: Some(Some("/bin/".into())),
                            chown: Some(Some(UserPatch {
                                user: Some("test".into()),
                                group: None
                            })),
                            link: Some(Some(true)),
                            ..Default::default()
                        }),
                        ..Default::default()
                    })
                );

                let copy_resource: CopyResource = copy_resource.into();

                assert_eq_sorted!(
                    copy_resource,
                    CopyResource::Copy(Copy {
                        from: FromContext::FromContext(Some("get-composer".into())),
                        paths: vec!["/usr/bin/composer".into()].into(),
                        options: CopyOptions {
                            target: Some("/bin/".into()),
                            chown: Some(User {
                                user: "test".into(),
                                group: None
                            }),
                            link: Some(true),
                            ..Default::default()
                        },
                        ..Default::default()
                    })
                );
            }

            #[test]
            fn copy_content() {
                let json_data = r#"{
    "content": "echo coucou",
    "substitute": false,
    "target": "test.sh",
    "chown": {
        "user": "1001",
        "group": "1001"
    },
    "chmod": "555",
    "link": true
}"#;

                let copy_resource: CopyResourcePatch = serde_yaml::from_str(json_data).unwrap();
                let copy_resource: CopyResource = copy_resource.into();

                assert_eq_sorted!(
                    copy_resource,
                    CopyResource::Content(CopyContent {
                        content: "echo coucou".into(),
                        substitute: Some(false),
                        options: CopyOptions {
                            target: Some("test.sh".into()),
                            chown: Some(User {
                                user: "1001".into(),
                                group: Some("1001".into())
                            }),
                            chmod: Some("555".into()),
                            link: Some(true),
                        }
                    })
                );
            }

            #[test]
            fn add_git_repo() {
                let json_data = r#"{
            "repo": "https://github.com/example/repo.git",
            "target": "destination/",
            "chown": {
                "user": "root",
                "group": "root"
            },
            "chmod": "755",
            "link": true,
            "keepGitDir": true,
            "checksum": "sha256:abcdef123456"
        }"#;

                let copy_resource: CopyResourcePatch = serde_yaml::from_str(json_data).unwrap();
                let copy_resource: CopyResource = copy_resource.into();

                assert_eq_sorted!(
                    copy_resource,
                    CopyResource::AddGitRepo(AddGitRepo {
                        repo: "https://github.com/example/repo.git".into(),
                        options: CopyOptions {
                            target: Some("destination/".into()),
                            chown: Some(User {
                                user: "root".into(),
                                group: Some("root".into())
                            }),
                            chmod: Some("755".into()),
                            link: Some(true),
                        },
                        keep_git_dir: Some(true),
                        exclude: vec![].into(),
                        checksum: Some("sha256:abcdef123456".into()),
                    })
                );
            }

            #[test]
            fn add() {
                let json_data = r#"{
            "files": ["file1.txt", "file2.txt"],
            "target": "destination/",
            "checksum": "sha256:abcdef123456",
            "chown": {
                "user": "root",
                "group": "root"
            },
            "chmod": "755",
            "link": true,
            "unpack": false
        }"#;

                let copy_resource: CopyResourcePatch = serde_yaml::from_str(json_data).unwrap();
                let copy_resource: CopyResource = copy_resource.into();

                assert_eq_sorted!(
                    copy_resource,
                    CopyResource::Add(Add {
                        files: vec![
                            Resource::File("file1.txt".into()),
                            Resource::File("file2.txt".into())
                        ]
                        .into(),
                        options: CopyOptions {
                            target: Some("destination/".into()),
                            chown: Some(User {
                                user: "root".into(),
                                group: Some("root".into())
                            }),
                            chmod: Some("755".into()),
                            link: Some(true),
                        },
                        checksum: Some("sha256:abcdef123456".into()),
                        unpack: Some(false),
                    })
                );
            }

            #[test]
            fn copy_in_dofigen() {
                let yaml_data = r#"
copy:
- fromContext: get-composer
  paths:
    - "/usr/bin/composer"
  target: "/bin/"
  chown:
    user: test
  link: true
- repo: 'https://github.com/pelican-dev/panel.git'
  target: '/tmp/pelican'
  chown:
    user: test
  link: true
"#;

                let dofigen: DofigenPatch = serde_yaml::from_str(yaml_data).unwrap();
                let dofigen: Dofigen = dofigen.into();

                assert_eq_sorted!(
                    dofigen,
                    Dofigen {
                        stage: Stage {
                            copy: vec![
                                CopyResource::Copy(Copy {
                                    from: FromContext::FromContext(Some("get-composer".into())),
                                    paths: vec!["/usr/bin/composer".into()].into(),
                                    options: CopyOptions {
                                        target: Some("/bin/".into()),
                                        chown: Some(User {
                                            user: "test".into(),
                                            group: None
                                        }),
                                        link: Some(true),
                                        ..Default::default()
                                    },
                                    ..Default::default()
                                }),
                                CopyResource::AddGitRepo(AddGitRepo {
                                    repo: "https://github.com/pelican-dev/panel.git".into(),
                                    options: CopyOptions {
                                        target: Some("/tmp/pelican".into()),
                                        chown: Some(User {
                                            user: "test".into(),
                                            group: None
                                        }),
                                        link: Some(true),
                                        ..Default::default()
                                    },
                                    ..Default::default()
                                })
                            ],
                            ..Default::default()
                        },
                        ..Default::default()
                    }
                );
            }
        }

        mod builder {
            use super::*;

            #[test]
            fn with_bind() {
                let json_data = r#"
fromImage:
  path: clux/muslrust:stable
workdir: /app
bind:
  - target: /app
run:
  - cargo build --release
  - mv target/x86_64-unknown-linux-musl/release/dofigen /app/
"#;

                let builder: Stage = serde_yaml::from_str::<StagePatch>(json_data)
                    .unwrap()
                    .into();

                assert_eq_sorted!(
                    builder,
                    Stage {
                        from: FromContext::FromImage(ImageName {
                            path: "clux/muslrust:stable".into(),
                            ..Default::default()
                        }),
                        workdir: Some("/app".into()),
                        run: Run {
                            bind: vec![Bind {
                                target: "/app".into(),
                                ..Default::default()
                            }],
                            run: vec![
                                "cargo build --release".into(),
                                "mv target/x86_64-unknown-linux-musl/release/dofigen /app/".into()
                            ],
                            ..Default::default()
                        },
                        ..Default::default()
                    }
                );
            }
        }
    }
}