diff options
Diffstat (limited to 'src_doit/dist/container')
| -rw-r--r-- | src_doit/dist/container/Dockerfile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src_doit/dist/container/Dockerfile b/src_doit/dist/container/Dockerfile new file mode 100644 index 0000000..32978c1 --- /dev/null +++ b/src_doit/dist/container/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.9-slim-bullseye +COPY *.whl . +RUN apt update -qy && \ + apt install -qy pkg-config gcc libcairo2-dev && \ + pip install -qq *.whl && \ + rm *.whl |
