Skip to content

Commit 3537c96

Browse files
author
ar.morozov
committed
fix
1 parent b615ccb commit 3537c96

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ RUN apt-get update && \
1818
nltk.download('stopwords', download_dir='/app/nltk_data'); \
1919
nltk.download('punkt_tab', download_dir='/app/nltk_data'); \
2020
nltk.download('punkt', download_dir='/app/nltk_data')" && \
21-
wget -O /app/llm/russian_trusted_root_ca.crt https://gu-st.ru/content/Other/doc/russiantrustedca.pem && \
2221
apt-get remove -y wget && \
2322
rm -rf /var/lib/apt/lists/*
2423

@@ -28,7 +27,7 @@ RUN pip install --no-cache-dir -r requirements.txt
2827

2928
# Копирование исходного кода
3029
COPY . .
31-
COPY russiantrustedca.pem /app/llm/russian_trusted_root_ca.crt
30+
COPY russian_trusted_root_ca.crt /app/llm/russian_trusted_root_ca.crt
3231

3332
# Проверка структуры проекта (после COPY)
3433
RUN ls -lR /app

0 commit comments

Comments
 (0)