edwagbb commited on
Commit
b9a9592
·
1 Parent(s): 4f3b1d9

Create Dockerfile

Browse files
Files changed (1) hide show
  1. 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)"