diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..8a66279 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,4 @@ +testdata + +**/.git +**/__pycache__ diff --git a/Dockerfile b/Dockerfile index a4ba7a2..8e71a6f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,5 +13,4 @@ RUN poetry export --without-hashes -o requirements.txt RUN pip install --no-cache-dir -r requirements.txt -COPY ./preprocess preprocess -COPY ./server server +COPY . .