rakeeb_paraphrase / Dockerfile
rizam's picture
Duplicate from aryadytm/paraphrase
3ed0c22
raw
history blame
124 Bytes
FROM python:3.9.12-buster
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD [ "streamlit", "run", "app.py" ]