Gleb Gleb
small change
8d26633
raw
history blame
198 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install --upgrade pip && \
pip install "impresso_pipelines[solrnormalization]" && \
pip install gradio jpype1
CMD ["python", "app.py"]