From 62ed999dc45756209181013cce5abecbe4098baf Mon Sep 17 00:00:00 2001 From: Alexander-D-Karpov Date: Wed, 8 Nov 2023 18:28:27 +0300 Subject: [PATCH] updated docker --- compose/local/django/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/local/django/Dockerfile b/compose/local/django/Dockerfile index 4f51040..8414ce0 100644 --- a/compose/local/django/Dockerfile +++ b/compose/local/django/Dockerfile @@ -38,10 +38,10 @@ RUN python -m venv /venv COPY pyproject.toml poetry.lock /app/ RUN poetry export --without-hashes -f requirements.txt | /venv/bin/pip install -r /dev/stdin -RUN python -m nltk.downloader punkt stopwords wordnet COPY . . RUN poetry build && /venv/bin/pip install dist/*.whl +RUN /venv/bin/python -m nltk.downloader punkt stopwords wordnet COPY ./compose/production/django/entrypoint /entrypoint