Proyecto / Dockerfile
dfernandezl12's picture
Upload 11 files
c1da183 verified
Raw
History Blame Contribute Delete
223 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y build-essential libgl1 libglib2.0-0
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "main.py"]