update README.md

This commit is contained in:
Dmitry Afanasyev 2023-01-18 02:28:30 +03:00
parent a328058a58
commit a894a1a7e1

View File

@ -4,8 +4,12 @@ Used for poetry packages management with docker
required `docker` and optionally `docker-compose`
---
## Generate poetry lock for any version
**Generate poetry.lock and requirements.txt in container for any version of python3 and poetry**
### Prepare:
- copy `pyproject.toml` file to `poetry` dir
- In Dockerfile set `python` version the same as in `pyproject.toml` and `poetry` version which will be used
@ -17,7 +21,7 @@ required `docker` and optionally `docker-compose`
docker build --build-arg USER=$USER -t poetry-python . && docker run --rm -u $USER -v $PWD/poetry:/poetry poetry-python
```
### Or from docker-compose:
### Or run from docker-compose:
```bash
docker-compose up --build
```