Gleb Gleb
small change
fade32f
raw
history blame
273 Bytes
FROM python:3.10-slim
WORKDIR /app
# Upgrade pip and install your PyPI package + extras
RUN pip install --upgrade pip && \
pip install "impresso_pipelines[solrnormalization]" && \
pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]