We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ead7e70 commit 1608c7cCopy full SHA for 1608c7c
Dockerfile
@@ -2,8 +2,12 @@ FROM python:3.8.5-slim-buster
2
3
WORKDIR /app
4
5
+
6
COPY . /app
7
8
+# Install build tools required for lightgbm and other packages
9
+RUN apt-get update && apt-get install -y --no-install-recommends gcc g++ make && rm -rf /var/lib/apt/lists/*
10
11
RUN pip install -r requirements.txt
12
13
CMD ["python3", "app.py"]
0 commit comments