From 56e8c121dabe127d150a2dd187456db1d9a510fd Mon Sep 17 00:00:00 2001 From: minchulahn Date: Mon, 26 Jun 2023 11:45:32 +0900 Subject: [PATCH] Add Dockerfile --- Dockerfile | 4 ++++ requirements.txt | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 Dockerfile 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