From 4c9bdbf23930a58e60c5f869ed2696ee70c49d4e Mon Sep 17 00:00:00 2001 From: mr_destructive Date: Sun, 14 May 2023 19:12:33 +0530 Subject: [PATCH] feat: add basic dockerfile for development --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..85adb83a --- /dev/null +++ b/Dockerfile @@ -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