fuckal / Dockerfile
nump's picture
Update Dockerfile
7834b9b verified
raw
history blame
89 Bytes
FROM python:3.11
COPY . .
RUN pip install -r req.txt
EXPOSE 7860
CMD ['python','main.py']