dna-casestudy / Dockerfile
davidna22's picture
Upload folder using huggingface_hub
dad00c5 verified
raw
history blame
154 Bytes
FROM python:3.10.2
workdir /app
COPY . .
RUN python -m pip install -U pip
RUN pip install -r /app/requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]