NLP / Dockerfile
ashishraics's picture
deleted model bin
ec4681c
raw history blame
No virus
134 Bytes
FROM python:3.9-slim-buster
COPY . /app
WORKDIR /app
RUN pip3 install -r requirements.txt
EXPOSE 8501
CMD ["streamlit","run","app.py"]