feat: add basic dockerfile for development

This commit is contained in:
mr_destructive 2023-05-14 19:12:33 +05:30
parent 4911012cf4
commit 4c9bdbf239

17
Dockerfile Normal file
View file

@ -0,0 +1,17 @@
FROM python:3.10
WORKDIR /app
COPY . .
RUN python3 -m venv venv
RUN python3 -m pip install .
# Run basic test suite
RUN python3 -m pip install pytest
RUN pytest
# Run entire test suite
RUN python3 -m pip install tox
RUN tox