neural-search / Dockerfile
ugaray96's picture
Updates dockerfile
beb3350 verified
raw
history blame
243 Bytes
FROM python:3.8.9
COPY . /app
WORKDIR /app
RUN apt-get update && xargs -r -a packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
RUN pip3 install --no-cache-dir -r requirements.txt
RUN pip3 install --no-cache-dir streamlit==1.10.0