bevelapi / Dockerfile
BeveledCube's picture
Update Dockerfile
9bdacec verified
raw
history blame
170 Bytes
FROM python:3.11
WORKDIR /api
COPY ./ /api/
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
RUN mkdir /api/models
EXPOSE 7860
CMD python -u main.py