Gleb Gleb
changed python version for docker
b42f9b9
raw
history blame
254 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install --upgrade pip && \
pip uninstall "impresso_pipelines" -y && \
pip install "impresso_pipelines[solrnormalization]==0.4.6.4" && \
pip install gradio jpype1
CMD ["python", "app.py"]