joseavilasg commited on
Commit
0746331
1 Parent(s): 281d870

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -8
Dockerfile CHANGED
@@ -1,15 +1,23 @@
1
- FROM ghcr.io/divyam234/teldrive/server:latest
2
 
3
- USER root
4
- RUN deluser user || true
5
- RUN adduser -D -u 1000 user
6
- RUN chown -R user:user /app
7
- USER user
8
- ENV PORT 7860
9
 
10
  ## Teldrive
11
  RUN --mount=type=secret,id=gist_teldrive,mode=0444,required=true \
 
 
 
12
  wget $(cat /run/secrets/gist_teldrive) -O /app/config.toml && \
13
  chmod a+x /app/teldrive && chmod 777 /app/config.toml && \
14
  touch /app/session.db && \
15
- chmod 777 /app/session.db
 
 
 
 
 
 
1
+ FROM ubuntu:latest
2
 
3
+ RUN apt-get update && \
4
+ apt-get install -y ca-certificates tzdata wget tar curl
5
+
6
+ WORKDIR /app
7
+ COPY . .
8
+ RUN chmod -R 777 /app
9
 
10
  ## Teldrive
11
  RUN --mount=type=secret,id=gist_teldrive,mode=0444,required=true \
12
+ latest_version=$(curl -s https://api.github.com/repos/divyam234/teldrive/releases/latest | grep "tag_name" | cut -d'"' -f4) && \
13
+ wget https://github.com/divyam234/teldrive/releases/download/$latest_version/teldrive-$latest_version-linux-amd64.tar.gz -O /app/teldrive.tar.gz && \
14
+ tar xvf /app/teldrive.tar.gz -C /app/ && \
15
  wget $(cat /run/secrets/gist_teldrive) -O /app/config.toml && \
16
  chmod a+x /app/teldrive && chmod 777 /app/config.toml && \
17
  touch /app/session.db && \
18
+ chmod 777 /app/session.db
19
+
20
+ ## Start
21
+ RUN chmod a+x /app/start.sh
22
+
23
+ CMD ["./start.sh"]