evaluator_unix.go 248 B

123456789
  1. // +build !windows
  2. package dockerfile
  3. // platformSupports is a short-term function to give users a quality error
  4. // message if a Dockerfile uses a command not supported on the platform.
  5. func platformSupports(command string) error {
  6. return nil
  7. }