Abdelkarim Bengrine commited on
Commit ·
a00b605
1
Parent(s): 7e25b31
fix: deployment
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -3,6 +3,10 @@ FROM python:3.11-slim
|
|
| 3 |
# Set the working directory in the container
|
| 4 |
WORKDIR /app
|
| 5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
COPY requirements.txt .
|
| 7 |
|
| 8 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 3 |
# Set the working directory in the container
|
| 4 |
WORKDIR /app
|
| 5 |
|
| 6 |
+
RUN apt-get update && apt-get install -y \
|
| 7 |
+
stockfish \
|
| 8 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 9 |
+
|
| 10 |
COPY requirements.txt .
|
| 11 |
|
| 12 |
RUN pip install --no-cache-dir -r requirements.txt
|