From fb926abc9bbd620c113ea57723bffd2b5f3a9327 Mon Sep 17 00:00:00 2001 From: RalfG Date: Tue, 16 May 2023 14:29:21 +0200 Subject: [PATCH] Merge RUN commands --- streamlit/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/streamlit/Dockerfile b/streamlit/Dockerfile index 9a65221..583ae9a 100644 --- a/streamlit/Dockerfile +++ b/streamlit/Dockerfile @@ -1,8 +1,7 @@ FROM python:3.10-slim-buster COPY . /deeplc WORKDIR /deeplc -RUN pip install --upgrade pip -RUN pip install -r requirements.txt +RUN pip install --upgrade pip && pip install -r requirements.txt ENV DEEPLC_LIBRARY_PATH="/tmp/deeplc_library.txt" EXPOSE 8501 CMD ["streamlit", "run", "deeplc_streamlit.py"]