MLSystemTFG / Dockerfile
luismidv's picture
Db update
48e3a09
raw
history blame contribute delete
210 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "/app/app.py", "--host", "0.0.0.0", "--port", "7860"]