initial commit

This commit is contained in:
2023-01-18 00:04:11 +03:00
commit 0e5d92208b
7 changed files with 673 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3.9'
services:
python:
image: "poetry-python:latest"
container_name: 'poetry-python'
build:
context: .
dockerfile: Dockerfile
args:
- USER=${USER}
volumes:
- ./poetry/:/poetry/
command: >
bash -c "
cp /code/* /poetry -r
&& sleep 2
&& chown ${USER}:$USER -R /poetry
"