Tofory commited on
Commit
6775fef
·
verified ·
1 Parent(s): f8b18e5

Create Dockerfile

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