mirror of
https://github.com/Balshgit/different
synced 2025-09-11 02:50:41 +03:00
14 lines
294 B
YAML
14 lines
294 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
python:
|
|
image: poetry-python:latest
|
|
container_name: 'poetry-python'
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ./poetry/:/poetry/
|
|
command: >
|
|
bash -c "cp /code/pypoetry.toml poetry.lock /poetry -r
|
|
&& sleep 5" |