wb-droid commited on
Commit
e9d1a14
1 Parent(s): 62f9e41

Try again.

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -6,6 +6,8 @@ WORKDIR /
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /requirements.txt
8
 
9
- RUN --mount=type=secret,id=SECRET_EXAMPLE,mode=0444,required=true
 
 
10
 
11
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /requirements.txt
8
 
9
+ RUN --mount=type=secret,id=HUGGINGFACE_API_KEY,mode=0444,required=true
10
+
11
+ RUN --mount=type=secret,id=TELEGRAM_BOT_TOKEN,mode=0444,required=true
12
 
13
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]