diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ef94870 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM python:3.11-slim +WORKDIR app +COPY ./requirements.txt ./ +RUN pip install --upgrade pip && pip install -r requirements.txt \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index b510a9e..3cdbf83 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,4 @@ jsontemplates==0.1.0 -PyYAML==6.0 \ No newline at end of file +PyYAML==6.0 +pandas==2.0.2 +tabulate==0.9.0 \ No newline at end of file