diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..93ca09e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.6 + +WORKDIR /usr/src/app + +RUN /usr/local/bin/python -m pip install --upgrade pip +COPY requirements.txt ./ +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..f7a0619 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +tensorflow == 1.14 +numpy == 1.18 +scipy == 1.4 +scikit-learn == 0.20 +tqdm == 4.41