17 lines
410 B
Go
17 lines
410 B
Go
// +build !dfrunmount
|
|
|
|
package dockerfile2llb
|
|
|
|
import (
|
|
"github.com/moby/buildkit/client/llb"
|
|
"github.com/moby/buildkit/frontend/dockerfile/instructions"
|
|
)
|
|
|
|
func detectRunMount(cmd *command, allDispatchStates *dispatchStates) bool {
|
|
return false
|
|
}
|
|
|
|
func dispatchRunMounts(d *dispatchState, c *instructions.RunCommand, sources []*dispatchState, opt dispatchOpt) ([]llb.RunOption, error) {
|
|
return nil, nil
|
|
}
|