fuckal / Dockerfile
nump's picture
Update Dockerfile
86fc265 verified
raw
history blame
111 Bytes
FROM python:3.11
COPY . /app
WORKDIR /app
RUN pip install -r req.txt
EXPOSE 7860
CMD ["python", "/app/main.py"]