File size: 219 Bytes
95ee2a7
5d8cca4
e82b7da
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM python:3.11-alpine
RUN apk add --no-cache build-base libffi-dev cmake git
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "-u", "app.py"]