Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -9,7 +9,7 @@ RUN chmod -R 777 /app
|
|
9 |
|
10 |
## Teldrive
|
11 |
RUN --mount=type=secret,id=gist_teldrive,mode=0444,required=true \
|
12 |
-
wget https://github.com/divyam234/teldrive/releases/1.0.19/
|
13 |
tar xvf /app/teldrive.tar.gz -C /app && \
|
14 |
wget $(cat /run/secrets/gist_teldrive) -O /app/teldrive.env && \
|
15 |
chmod a+x /app/teldrive && chmod 777 /app/teldrive.env && \
|
|
|
9 |
|
10 |
## Teldrive
|
11 |
RUN --mount=type=secret,id=gist_teldrive,mode=0444,required=true \
|
12 |
+
wget https://github.com/divyam234/teldrive/releases/download/1.0.19/teldrive_linux_amd64.tar.gz -O /app/teldrive.tar.gz && \
|
13 |
tar xvf /app/teldrive.tar.gz -C /app && \
|
14 |
wget $(cat /run/secrets/gist_teldrive) -O /app/teldrive.env && \
|
15 |
chmod a+x /app/teldrive && chmod 777 /app/teldrive.env && \
|