Spaces:
Paused
Paused
Create Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3-slim
|
| 2 |
+
|
| 3 |
+
RUN pip install cloudscraper && \
|
| 4 |
+
apt-get update -y && \
|
| 5 |
+
apt-get install -y nodejs-legacy && \
|
| 6 |
+
rm -rf /var/lib/apt/lists/*
|
| 7 |
+
|
| 8 |
+
CMD python -c "print(1)"
|