File size: 128 Bytes
41c1aed
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM python:3.11-slim

WORKDIR /app

COPY . .

EXPOSE 8000
RUN pip3 install -r requirements.txt

ENTRYPOINT ["python", "app.py"]