nutrivision / Dockerfile
Korapati's picture
Upload 3 files
bd491ed verified
raw
history blame contribute delete
158 Bytes
FROM python:3.10
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]