Can you give me an example of a Dockerfile in which I can install all the packages I need from poetry.lock and pyproject.toml into my imag
Dockerfile
poetry.lock
pyproject.toml
build image without python-poetry
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