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

     1  FROM python:3.9-alpine
     2  
     3  EXPOSE 5000
     4  # Use shell-style CMD so that the image uses ["/bin/sh", "-c", "npm start"]
     5  CMD python3 app.py
     6  
     7  WORKDIR /app
     8  COPY . /app
     9  RUN pip3 install -r requirements.txt