File size: 257 Bytes
a4cbb90
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM python:3.11-slim
RUN apt-get update && apt-get install -y gcc g++
COPY requirements_simple.txt .
RUN pip install -r requirements_simple.txt --no-cache-dir
COPY app_simple.py .
RUN mkdir -p /app/data
WORKDIR /
EXPOSE 7860
CMD ["python", "app_simple.py"]