File size: 178 Bytes
e4ace22
 
 
 
 
 
 
 
 
 
 
 
571239b
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


FROM python:3.8-slim

WORKDIR /app

ADD . /app

RUN apt-get update && apt-get install -y libgomp1

RUN pip install -r requirements.txt

EXPOSE 8000

CMD ["python", "lr_api.py"]