File size: 183 Bytes
73617f9
 
 
 
 
 
 
31b35fd
73617f9
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.10-bookworm

COPY . /app
WORKDIR /app

EXPOSE 10000
RUN pip install -r requirements.txt
RUN pip install pandas==1.3.3 numpy==1.21.2

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