Spaces:
Sleeping
Sleeping
Atharva commited on
Commit ·
ca70d21
1
Parent(s): b05fe7b
Fix Dockerfile pip install quoting
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
|
@@ -18,10 +18,10 @@ COPY . /app
|
|
| 18 |
|
| 19 |
# Install Python dependencies, including OpenEnv core 0.2.1
|
| 20 |
RUN pip install --no-cache-dir \
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
|
| 26 |
ENV SHOWDOWN_DIR=/opt/pokemon-showdown
|
| 27 |
|
|
|
|
| 18 |
|
| 19 |
# Install Python dependencies, including OpenEnv core 0.2.1
|
| 20 |
RUN pip install --no-cache-dir \
|
| 21 |
+
openenv-core==0.2.1 \
|
| 22 |
+
"poke-env>=0.8.0,<0.9.0" \
|
| 23 |
+
"numpy>=1.24.0" \
|
| 24 |
+
"pydantic>=2.0.0"
|
| 25 |
|
| 26 |
ENV SHOWDOWN_DIR=/opt/pokemon-showdown
|
| 27 |
|