pycaret_test / Dockerfile
cerkut's picture
Update Dockerfile
571239b
raw
history blame contribute delete
178 Bytes
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"]