Pro / Dockerfile
Zhofang's picture
Update Dockerfile
c6fad95 verified
raw
history blame contribute delete
141 Bytes
FROM python:3.9
WORKDIR /code
RUN pip install flask requests
RUN pip install numpy==1.26.4
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]