Commit 52481e7d authored by shikhin-1998's avatar shikhin-1998

added dockerfile

parent a6872d56
FROM python:3.10
RUN apt-get update
RUN apt install tzdata ffmpeg libsm6 libxext6 -y
#RUN pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install scipy==1.9.3
ADD . /code
WORKDIR /code
COPY requirements.txt /code/requirements.txt
RUN pip3 install -r requirements.txt
CMD ["python3","app.py"]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment