Initial commit

This commit is contained in:
2022-04-23 19:17:31 +02:00
commit d9ce9fb9a5
8 changed files with 61 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM docker.io/python:3.10-alpine
COPY . src
RUN cd src && pip install --no-cache-dir .
CMD ["python", "-m", "myproj"]