vibbaai / Dockerfile
Rauhan's picture
Update Dockerfile
024d9ba verified
raw
history blame
159 Bytes
FROM python:3.10-slim
COPY . /app
WORKDIR /app
USER root
RUN pip install -r requirements.txt
RUN chmod -R 777 /app
EXPOSE 7860
CMD ["python", "main.py"]