text-classification / Dockerfile
manue
Remove EXPOSE 5000 from Dockerfile and retain EXPOSE 7860
5b6a5ec
raw
history blame
139 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]