vibbabackend / Dockerfile
prestiva's picture
Update Dockerfile
3763ad2 verified
raw
history blame contribute delete
159 Bytes
FROM python:3.12-slim
COPY . /app
WORKDIR /app
USER root
RUN pip install uv
RUN uv sync
RUN chmod -R 777 /app
EXPOSE 7860
CMD ["uv", "run", "main.py"]