diff --git a/docker/MonitorDockerfile b/docker/MonitorDockerfile index 48d5937..87922b3 100644 --- a/docker/MonitorDockerfile +++ b/docker/MonitorDockerfile @@ -11,7 +11,6 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN apt-get install -y libgl1-mesa-glx libglib2.0-0 libsm6 libxrender1 libxext6 -y RUN apt-get install iputils-ping netcat -y - # autodeploy requirements COPY ./requirements.txt /app/requirements.txt RUN python3 -m pip install -r /app/requirements.txt @@ -20,7 +19,6 @@ RUN python3 -m pip install -r /app/requirements.txt COPY $MODEL_REQ /app/$MODEL_REQ RUN python3 -m pip install -r /app/$MODEL_REQ - ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8 ENV LANGUAGE=C.UTF-8 diff --git a/docker/PredictDockerfile b/docker/PredictDockerfile index 1ef6f38..7a1fd22 100644 --- a/docker/PredictDockerfile +++ b/docker/PredictDockerfile @@ -5,14 +5,6 @@ RUN apt-get update \ && apt-get clean \ && apt-get autoremove -# autodeploy requirements -COPY ./requirements.txt /app/requirements.txt -RUN python3 -m pip install -r /app/requirements.txt - -# user requirements -COPY $MODEL_REQ /app/$MODEL_REQ -RUN python3 -m pip install -r /app/$MODEL_REQ - ENV TZ=Europe/Kiev RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone