Added docker support + readme instructions

This commit is contained in:
2022-10-03 20:56:26 +02:00
parent aec4cdfdfa
commit adc9073683
3 changed files with 192 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.10.7-alpine
ADD . /app
WORKDIR /app
RUN pip install -r requirements.txt
RUN pip install -e .
CMD [ "python", "qbit_ci" ]