Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 458 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 458 Bytes

no-pypoetry

Docker Pull Count Docker Image Size (latest by date)

build image without pypoetry from a pypoetry project

FROM abersh/no-pypoetry as requirements

FROM python:3.7

# ... yourself commands

COPY --from=requirements /src/requirements.txt .

RUN pip install -r requirements.txt

# ... yourself commands