github.com/rohankumardubey/draft-classic@v0.16.0/packs/python/Dockerfile (about)

     1  FROM python
     2  ENV PORT 8080
     3  EXPOSE 8080
     4  WORKDIR /usr/src/app
     5  
     6  COPY requirements.txt ./
     7  RUN pip install --no-cache-dir -r requirements.txt
     8  
     9  COPY . .
    10  
    11  ENTRYPOINT ["python"]
    12  CMD ["app.py"]