github.com/GoogleContainerTools/skaffold@v1.39.18/examples/nodejs/skaffold.yaml (about)

     1  apiVersion: skaffold/v2beta28
     2  kind: Config
     3  
     4  build:
     5    artifacts:
     6    - image: node-example
     7      context: backend
     8  
     9  profiles:
    10    - name: dev
    11      activation:
    12        - command: dev
    13      build:
    14        artifacts:
    15        - image: node-example
    16          context: backend
    17          docker:
    18            buildArgs:
    19              ENV: development
    20          sync:
    21            manual:
    22            # Sync all the javascript files that are in the src folder
    23            # with the container src folder
    24            - src: 'src/**/*.js'
    25              dest: .