Spaces:
Sleeping
Sleeping
File size: 179 Bytes
e4ace22 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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"]
|