Sign-Language / Dockerfile
Pradeep018's picture
Upload 11 files
32014d8 verified
raw
history blame contribute delete
186 Bytes
From python:3.10.10
WORKDIR /app
COPY requirements.txt ./requirements.txt
RUN pip install -r requirements.txt
EXPOSE 8501
COPY . /app
ENTRYPOINT ["streamlit","run"]
CMD ["app.py"]