Spaces:
Paused
Paused
Create Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.10-slim-buster
|
| 2 |
+
RUN apt-get update -y && apt-get install git -y
|
| 3 |
+
RUN git clone https://github.com/weebzone/Surf-TG.git /app
|
| 4 |
+
WORKDIR /app
|
| 5 |
+
RUN pip3 install --no-cache-dir -U -r requirements.txt
|
| 6 |
+
CMD ["python3", "-m", "WebStreamer"]
|