bevelapi / Dockerfile
BeveledCube's picture
Create Dockerfile
e7b7706 verified
raw
history blame
No virus
148 Bytes
FROM python:3.11
WORKDIR /api
COPY ./ /api/
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 7860
CMD python -u main.py