github.com/GoogleContainerTools/skaffold/v2@v2.13.2/integration/testdata/debug/specified-runtime/Dockerfile (about)

     1  FROM node:14.9-alpine
     2  
     3  WORKDIR /opt/backend
     4  EXPOSE 3000
     5  CMD ["node", "src/index.js"]
     6  # add this so skaffold will infer env so that DlvTransformer will be used for go runtime if user not specifies runtime when building image
     7  ENV GOGC off
     8  
     9  COPY . .
    10  RUN npm install --no-package-lock