Commit ebf0b76 1 parent fad1956 commit ebf0b76 Copy full SHA for ebf0b76
File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
4
4
namespace Build ;
5
5
6
- public abstract class DockerBaseTask : FrostingTask < BuildContext >
6
+ public abstract class DockerBuildBase : FrostingTask < BuildContext >
7
7
{
8
8
protected const string Prefix = "org.opencontainers.image" ;
9
9
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace Build;
5
5
6
6
[ TaskName ( nameof ( DockerBuildDeps ) ) ]
7
7
[ TaskDescription ( "Builds the docker images dependencies" ) ]
8
- public sealed class DockerBuildDeps : DockerBaseTask
8
+ public sealed class DockerBuildDeps : DockerBuildBase
9
9
{
10
10
public override void Run ( BuildContext context )
11
11
{
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace Build;
5
5
6
6
[ TaskName ( nameof ( DockerBuildImages ) ) ]
7
7
[ TaskDescription ( "Builds the docker images" ) ]
8
- public sealed class DockerBuildImages : DockerBaseTask
8
+ public sealed class DockerBuildImages : DockerBuildBase
9
9
{
10
10
public override void Run ( BuildContext context )
11
11
{
You can’t perform that action at this time.
0 commit comments